Skip to content

Commit 8a48566

Browse files
Update actions/cache action to v5
1 parent 06f4106 commit 8a48566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030

3131
- name: 🛻 Restore Binary
3232
id: cache-restore
33-
uses: actions/cache/restore@v4
33+
uses: actions/cache/restore@v5
3434
with:
3535
path: ${{ env.BINARY_PATH }}
3636
key: build-cache-${{ runner.os }}-${{ env.VERSION_NUMBER }}
@@ -52,7 +52,7 @@ runs:
5252

5353
- name: 💾 Save Binary
5454
if: steps.cache-restore.outputs.cache-hit != 'true'
55-
uses: actions/cache/save@v4
55+
uses: actions/cache/save@v5
5656
with:
5757
path: ${{ env.BINARY_PATH }}
5858
key: build-cache-${{ runner.os }}-${{ env.VERSION_NUMBER }}

0 commit comments

Comments
 (0)