Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 18, 2025
1 parent 61d2d00 commit 692905c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:

- name: 🛻 Restore Binary
id: cache-restore
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.BINARY_PATH }}
key: build-cache-${{ runner.os }}-${{ env.VERSION_NUMBER }}
Expand All @@ -51,7 +51,7 @@ runs:

- name: 💾 Save Binary
if: steps.cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ env.BINARY_PATH }}
key: build-cache-${{ runner.os }}-${{ env.VERSION_NUMBER }}
Expand Down

0 comments on commit 692905c

Please sign in to comment.