Skip to content
Open
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/cache-pixi-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Get current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
- uses: actions/cache/restore@v4
- uses: actions/cache/restore@v5
id: restore
with:
path: |
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Run pixi lock
if: ${{ !steps.restore.outputs.cache-hit }}
run: pixi lock
- uses: actions/cache/save@v4
- uses: actions/cache/save@v5
if: ${{ !steps.restore.outputs.cache-hit }}
id: cache
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,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 @@ -54,7 +54,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 @@ -68,7 +68,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 @@ -103,7 +103,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 @@ -151,7 +151,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