Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/check-renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install node
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24
- name: Install renovate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v6
- uses: actions/labeler@v7
2 changes: 1 addition & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
source-files: ${{ steps.filter.outputs.source-files }}
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: [self-hosted]
steps:
- name: Create a Prerelease
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
# Generate release notes on the new GH release
generate_release_notes: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:

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

- name: Set up uv with caching
id: setup-uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v9.0.0
with:
enable-cache: true
cache-suffix: ${{ steps.runner-info.outputs.cache-hash }}

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.14"

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

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

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

- name: Install ajv cli
run: npm install -g ajv-cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

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

Expand All @@ -26,7 +26,7 @@ jobs:
uses: canonical/action-build@v1

- name: Upload rockcraft snap
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: snap
path: ${{ steps.build-rockcraft.outputs.snap }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spread-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Build snap
Expand All @@ -45,7 +45,7 @@ jobs:
mkdir "${{ github.workspace }}"

- name: Checkout rockcraft
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: true
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 @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0
# speed up build times by using wheels, when available
Expand All @@ -40,7 +40,7 @@ jobs:
uses: canonical/action-build@v1
id: rockcraft
- name: Upload snap artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: snap
path: ${{ steps.rockcraft.outputs.snap }}
Expand All @@ -56,12 +56,12 @@ jobs:
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout rockcraft
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: true
- name: Download snap artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: snap
path: tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spread.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
source-files: ${{ steps.filter.outputs.source-files }}
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Check which files changed
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout rockcraft
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: true
Expand Down
Loading