Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Restore cached pixi lockfile
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore-pixi-lock
with:
enableCrossOsArchive: true
Expand All @@ -60,7 +60,7 @@ jobs:
# https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
- name: Restore cached hypothesis directory
id: restore-hypothesis-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .hypothesis/
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
Expand All @@ -74,7 +74,7 @@ jobs:
- name: Save cached hypothesis directory
id: save-hypothesis-cache
if: always() && steps.unit-test.outcome != 'skipped'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: .hypothesis/
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Restore cached pixi lockfile
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore-pixi-lock
with:
enableCrossOsArchive: true
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v5
- name: Restore cached pixi lockfile
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore-pixi-lock
with:
path: |
Expand Down
Loading