Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:

- name: Restore cibuildwheel cache
id: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~\AppData\Local\pypa\cibuildwheel\Cache
Expand All @@ -238,7 +238,7 @@ jobs:
- name: Cache restore windows deps
if: startsWith(matrix.os, 'windows')
id: cache-win-deps
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
env:
cache-name: win-deps
with:
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
# the cache redundantly doesn't compare to the time it takes to rebuild vcpkg packages.
if: ${{ always() && startsWith(matrix.os, 'windows') }}
id: cache-win-deps-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
env:
cache-name: win-deps
with:
Expand Down
Loading