We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 985f0e4 commit 61d0343Copy full SHA for 61d0343
1 file changed
.github/actions/cached-deps/action.yml
@@ -11,10 +11,10 @@ runs:
11
- name: Cache dependencies
12
if: inputs.caching == 'true'
13
id: cache
14
- uses: actions/cache@v3
+ uses: actions/cache@v4
15
with:
16
path: node_modules
17
- key: deps-node-modules-${{ hashFiles('**/package-lock.json') }}
+ key: deps-node-modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
18
- name: Install dependencies
19
if: steps.cache.outputs.cache-hit != 'true' || inputs.caching != 'true'
20
run: npm ci
0 commit comments