Skip to content

Commit c58dc70

Browse files
committed
test: Update actions/cache to v5
1 parent f8b73a7 commit c58dc70

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- main
66
paths:
7-
- action.yml
7+
- action.yaml
88
- scripts/**
99
- .github/workflows/test.yaml
1010
schedule:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Restore Hello World cache
2929
if: matrix.cache == 'cache' && matrix.cache-hit == 'cache-hit'
3030
id: cache
31-
uses: actions/cache/restore@v4
31+
uses: actions/cache/restore@v5
3232
with:
3333
path: ${{ runner.tool_cache }}/hello-world
3434
key: hello-world-${{ runner.os }}-${{ matrix.cache-hit }}
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Save Hello World cache
6262
if: matrix.cache == 'cache' && ! steps.cache.outputs.cache-hit
63-
uses: actions/cache/save@v4
63+
uses: actions/cache/save@v5
6464
with:
6565
path: ${{ runner.tool_cache }}/hello-world
6666
key: hello-world-${{ runner.os }}-${{ matrix.cache-hit }}

0 commit comments

Comments
 (0)