Skip to content

Commit 063af00

Browse files
build(deps): bump actions/cache from 5 to 6 (#6168)
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ff7c5e5 commit 063af00

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci-cache-warmup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
1919
components: rust-src
20-
- uses: actions/cache/restore@v5
20+
- uses: actions/cache/restore@v6
2121
with:
2222
# https://github.com/PyO3/maturin/discussions/1953
2323
path: ~/.cache/cargo-xwin
@@ -28,7 +28,7 @@ jobs:
2828
sudo apt-get install -y mingw-w64 llvm
2929
pip install nox
3030
nox -s test-cross-compilation-windows
31-
- uses: actions/cache/save@v5
31+
- uses: actions/cache/save@v6
3232
with:
3333
path: ~/.cache/cargo-xwin
3434
key: cargo-xwin-cache

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ jobs:
494494
- uses: actions/setup-node@v6
495495
with:
496496
node-version: 24
497-
- uses: actions/cache/restore@v5
497+
- uses: actions/cache/restore@v6
498498
id: cache
499499
with:
500500
path: |
@@ -508,7 +508,7 @@ jobs:
508508
run: uvx nox -s build-emscripten
509509
- name: Test
510510
run: uvx nox -s test-emscripten
511-
- uses: actions/cache/save@v5
511+
- uses: actions/cache/save@v6
512512
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
513513
with:
514514
path: |
@@ -539,7 +539,7 @@ jobs:
539539
# wasi sdk sets CC variables which break Python's configure script
540540
# (it also sets WASI_SDK_PATH even without `add-to-path`, which is sufficient)
541541
add-to-path: false
542-
- uses: actions/cache/restore@v5
542+
- uses: actions/cache/restore@v6
543543
id: cache
544544
with:
545545
path: |
@@ -553,7 +553,7 @@ jobs:
553553
run: uvx nox -s build-wasm
554554
- name: Test
555555
run: uvx nox -s test-wasm
556-
- uses: actions/cache/save@v5
556+
- uses: actions/cache/save@v6
557557
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
558558
with:
559559
path: |
@@ -742,7 +742,7 @@ jobs:
742742
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
743743
components: rust-src
744744
# load cache (prepared in ci-cache-warmup.yml)
745-
- uses: actions/cache/restore@v5
745+
- uses: actions/cache/restore@v6
746746
with:
747747
path: ~/.cache/cargo-xwin
748748
key: cargo-xwin-cache

.github/workflows/netlify-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Restore lychee cache
4141
id: restore-cache
42-
uses: actions/cache/restore@v5
42+
uses: actions/cache/restore@v6
4343
with:
4444
path: .lycheecache
4545
key: lychee-${{ github.run_id }}
@@ -56,7 +56,7 @@ jobs:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757

5858
- name: Save lychee cache
59-
uses: actions/cache/save@v5
59+
uses: actions/cache/save@v6
6060
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
6161
with:
6262
path: .lycheecache

0 commit comments

Comments
 (0)