Skip to content
Closed
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 restore-jupyter-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ runs:
- name: Restore cache (read-only)
id: restore-readonly
if: inputs.save-cache != 'true'
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ steps.cache-path.outputs.path }}
key: ${{ steps.cache-key.outputs.key }}
Expand All @@ -114,7 +114,7 @@ runs:
- name: Restore cache (with save at job end)
id: restore-save
if: inputs.save-cache == 'true'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.cache-path.outputs.path }}
key: ${{ steps.cache-key.outputs.key }}
Expand Down