Skip to content

Commit 1d6025b

Browse files
jensensclaude
andcommitted
ci: update GitHub Actions to Node 22 (fix deprecation warnings)
- actions/checkout v4 → v5 - actions/setup-python v5 → v6 - astral-sh/setup-uv v4 → v6 (docs.yaml, was already v6 elsewhere) - actions/upload-pages-artifact v3 → v4 - actions/deploy-pages v4 → v5 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8fa0684 commit 1d6025b

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
build:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

27-
- uses: actions/setup-python@v5
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: "3.13"
3030

31-
- uses: astral-sh/setup-uv@v4
31+
- uses: astral-sh/setup-uv@v6
3232

3333
- name: Install docs dependencies
3434
working-directory: docs
@@ -42,7 +42,7 @@ jobs:
4242
working-directory: docs
4343
run: .venv/bin/sphinx-build sources html
4444

45-
- uses: actions/upload-pages-artifact@v3
45+
- uses: actions/upload-pages-artifact@v4
4646
with:
4747
path: docs/html
4848

@@ -55,4 +55,4 @@ jobs:
5555
steps:
5656
- name: Deploy to GitHub Pages
5757
id: deployment
58-
uses: actions/deploy-pages@v4
58+
uses: actions/deploy-pages@v5

.github/workflows/qa.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Ruff
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- uses: astral-sh/setup-uv@v6
1818

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
contents: read
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636
persist-credentials: false

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
ZODB_TEST_DSN: "dbname=zodb_test user=zodb password=zodb host=localhost port=5432"
3636

3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
with:
4040
fetch-depth: 0
4141

@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272

7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v5
7575

7676
- uses: astral-sh/setup-uv@v6
7777
with:

0 commit comments

Comments
 (0)