We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b73a7 commit c58dc70Copy full SHA for c58dc70
1 file changed
.github/workflows/test.yaml
@@ -4,7 +4,7 @@ on:
4
branches:
5
- main
6
paths:
7
- - action.yml
+ - action.yaml
8
- scripts/**
9
- .github/workflows/test.yaml
10
schedule:
@@ -28,7 +28,7 @@ jobs:
28
- name: Restore Hello World cache
29
if: matrix.cache == 'cache' && matrix.cache-hit == 'cache-hit'
30
id: cache
31
- uses: actions/cache/restore@v4
+ uses: actions/cache/restore@v5
32
with:
33
path: ${{ runner.tool_cache }}/hello-world
34
key: hello-world-${{ runner.os }}-${{ matrix.cache-hit }}
@@ -60,7 +60,7 @@ jobs:
60
61
- name: Save Hello World cache
62
if: matrix.cache == 'cache' && ! steps.cache.outputs.cache-hit
63
- uses: actions/cache/save@v4
+ uses: actions/cache/save@v5
64
65
66
0 commit comments