Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- name: Install renovate
run: npm install --global renovate
- name: Enable ssh access
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/experimental.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
run: |
echo -n jobs="$(sudo snap install --no-wait --edge astral-ty)" >> $GITHUB_OUTPUT
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up uv with caching
id: setup-uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up linters
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: [self-hosted, jammy]
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Fetch tag annotations
run: |
# Note: we fetch the tags here instead of using actions/checkout's "fetch-tags"
# because of https://github.com/actions/checkout/issues/1467
git fetch --force --tags --depth 1
git describe --dirty --long --match '[0-9]*.[0-9]*.[0-9]*' --exclude '*[^0-9.]*'
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
check-latest: true
Expand All @@ -32,7 +32,7 @@ jobs:
python3 -m build
twine check dist/*
- name: Upload pypi packages artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pypi-packages
path: dist/
Expand All @@ -44,7 +44,7 @@ jobs:
id-token: write
steps:
- name: Get packages
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: pypi-packages
path: dist/
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: [self-hosted, jammy]
steps:
- name: Get pypi artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: pypi-packages
- name: Release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -34,14 +34,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22"
node-version: "24"

- name: Install ajv cli
run: npm install -g ajv-cli
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/spread-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: [self-hosted, linux, amd64, noble, medium]
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build snap
uses: snapcore/action-build@v1
id: charmcraft
- name: Upload snap artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: snap
path: ${{ steps.charmcraft.outputs.snap }}
Expand All @@ -36,7 +36,7 @@ jobs:
systems: ${{ steps.select.outputs.systems }}
steps:
- name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand All @@ -61,7 +61,7 @@ jobs:
sudo ip6tables -P FORWARD ACCEPT

- name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand All @@ -72,18 +72,18 @@ jobs:
mkdir "${{ github.workspace }}"

- name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true

- name: Download snap artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: snap

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: 1.24

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/spread-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
# speed up build times by using wheels, when available
Expand All @@ -54,7 +54,7 @@ jobs:
uses: canonical/action-build@v1
id: snapcraft
- name: Upload snap artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: snap
path: ${{ steps.snapcraft.outputs.snap }}
Expand Down Expand Up @@ -84,12 +84,12 @@ jobs:
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
- name: Download snap artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: snap
- name: Spread k8s operator
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/spread.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
runs-on: [self-hosted, amd64]
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build snap
uses: snapcore/action-build@v1
id: charmcraft
- name: Upload snap artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: snap
path: ${{ steps.charmcraft.outputs.snap }}
Expand All @@ -64,7 +64,7 @@ jobs:
systems: ${{ steps.select.outputs.systems }}
steps:
- name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Find spread systems
id: select
run: |
Expand All @@ -85,13 +85,13 @@ jobs:
mkdir "${{ github.workspace }}"

- name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true

- name: Download snap artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: snap

Expand All @@ -114,14 +114,14 @@ jobs:
steps:
- if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'canonical') || (github.event_name == 'push' && github.ref == 'refs/heads/main')
name: Checkout charmcraft
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true

- if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'canonical') || (github.event_name == 'push' && github.ref == 'refs/heads/main')
name: Download snap artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: snap

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
runs-on: [self-hosted, amd64]
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build snap
uses: canonical/action-build@v1
id: snapcraft
- name: Upload snap artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: snap
path: ${{ steps.snapcraft.outputs.snap }}
Expand All @@ -69,7 +69,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Download snap artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: snap
path: snap-artifacts
Expand Down Expand Up @@ -112,12 +112,12 @@ jobs:
brew install multipass
brew install [email protected] # For building pygit2
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up uv with caching
id: setup-uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: "pip"
Expand Down
Loading