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 393c752 commit a160b70Copy full SHA for a160b70
.github/actions/npm_install/action.yml
@@ -5,7 +5,7 @@ runs:
5
steps:
6
- name: Cache dependencies
7
id: cache-node-modules
8
- uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c
+ uses: actions/cache/restore@v4
9
with:
10
key: v1-deps-{{ hashFiles("package-lock.json") }}
11
path: node_modules
@@ -15,7 +15,7 @@ runs:
15
shell: bash
16
- name: save_cache
17
if: steps.cache-node-modules.outputs.cache-hit != 'true'
18
- uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c
+ uses: actions/cache/save@v4
19
20
21
0 commit comments