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
6 changes: 3 additions & 3 deletions create-and-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ runs:
echo "key=${key}" >> "$GITHUB_OUTPUT"

- name: Restore pixi.lock from cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
id: restore
with:
path: pixi.lock
key: ${{ steps.cache-key.outputs.key }}

- name: Setup pixi
uses: prefix-dev/setup-pixi@v0.9.3
uses: prefix-dev/setup-pixi@82d477f15f3a381dbcc8adc1206ce643fe110fb7 # v0.9.3
if: ${{ !steps.restore.outputs.cache-hit }}
with:
pixi-version: ${{ inputs.pixi-version }}
Expand All @@ -46,7 +46,7 @@ runs:
run: pixi lock

- name: Save pixi.lock to cache
uses: actions/cache/save@v5
uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
if: ${{ !steps.restore.outputs.cache-hit }}
with:
path: pixi.lock
Expand Down
2 changes: 1 addition & 1 deletion restore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
echo "key=${base}_${yesterday}" >> "$GITHUB_OUTPUT"

- name: Restore pixi.lock from cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
id: restore
with:
path: pixi.lock
Expand Down