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
4 changes: 2 additions & 2 deletions .github/workflows/ci-cache-warmup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
components: rust-src
- uses: actions/cache/restore@v5
- uses: actions/cache/restore@v6
with:
# https://github.com/PyO3/maturin/discussions/1953
path: ~/.cache/cargo-xwin
Expand All @@ -28,7 +28,7 @@ jobs:
sudo apt-get install -y mingw-w64 llvm
pip install nox
nox -s test-cross-compilation-windows
- uses: actions/cache/save@v5
- uses: actions/cache/save@v6
with:
path: ~/.cache/cargo-xwin
key: cargo-xwin-cache
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: 24
- uses: actions/cache/restore@v5
- uses: actions/cache/restore@v6
id: cache
with:
path: |
Expand All @@ -508,7 +508,7 @@ jobs:
run: uvx nox -s build-emscripten
- name: Test
run: uvx nox -s test-emscripten
- uses: actions/cache/save@v5
- uses: actions/cache/save@v6
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
with:
path: |
Expand Down Expand Up @@ -539,7 +539,7 @@ jobs:
# wasi sdk sets CC variables which break Python's configure script
# (it also sets WASI_SDK_PATH even without `add-to-path`, which is sufficient)
add-to-path: false
- uses: actions/cache/restore@v5
- uses: actions/cache/restore@v6
id: cache
with:
path: |
Expand All @@ -553,7 +553,7 @@ jobs:
run: uvx nox -s build-wasm
- name: Test
run: uvx nox -s test-wasm
- uses: actions/cache/save@v5
- uses: actions/cache/save@v6
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
with:
path: |
Expand Down Expand Up @@ -742,7 +742,7 @@ jobs:
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
components: rust-src
# load cache (prepared in ci-cache-warmup.yml)
- uses: actions/cache/restore@v5
- uses: actions/cache/restore@v6
with:
path: ~/.cache/cargo-xwin
key: cargo-xwin-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/netlify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Restore lychee cache
id: restore-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: .lycheecache
key: lychee-${{ github.run_id }}
Expand All @@ -56,7 +56,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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