Skip to content

Commit 236c225

Browse files
teh-hippoCopilot
andcommitted
ci: upgrade GitHub Actions and runner versions
Actions: - actions/checkout v4 -> v6 - actions/cache v4 -> v5 - actions/setup-python v5 -> v6 - actions/setup-node v4 -> v6 - actions/upload-pages-artifact v3 -> v4 - actions/upload-artifact v4 -> v5 - actions/download-artifact v4 -> v5 - docker/setup-buildx-action v3 -> v4 - docker/setup-qemu-action v3 -> v4 - github/codeql-action v3 -> v4 - peter-evans/dockerhub-description v3 -> v5 Runners (quality-checks only): - ubuntu-22.04 -> ubuntu-24.04 - windows-2022 -> windows-2025 - macos-13 -> macos-15 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 5bf398d commit 236c225

File tree

10 files changed

+277
-290
lines changed

10 files changed

+277
-290
lines changed

.github/workflows/build-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v6
1010

11-
- uses: docker/setup-buildx-action@v3
11+
- uses: docker/setup-buildx-action@v4
1212
id: setup
1313

1414
- name: Cache Build
15-
uses: actions/cache@v4
15+
uses: actions/cache@v5
1616
id: cache
1717
with:
1818
# if the list or anything in these folders expected to change, then cache needs to be cleared and rebuilt, because it is keyed only by pyproject.toml hash
@@ -42,7 +42,7 @@ jobs:
4242
}
4343
4444
- name: Build Doc
45-
uses: docker/build-push-action@v6
45+
uses: docker/build-push-action@v7
4646
with:
4747
push: false
4848
platforms: linux/arm64
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/configure-pages@v5
5858

5959
- name: Upload artifact
60-
uses: actions/upload-pages-artifact@v3
60+
uses: actions/upload-pages-artifact@v4
6161
with:
6262
path: docs/_build/html/
6363

0 commit comments

Comments
 (0)