Skip to content

Commit 61d0343

Browse files
committed
Update to cache v4. Bust cache.
1 parent 985f0e4 commit 61d0343

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/cached-deps/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ runs:
1111
- name: Cache dependencies
1212
if: inputs.caching == 'true'
1313
id: cache
14-
uses: actions/cache@v3
14+
uses: actions/cache@v4
1515
with:
1616
path: node_modules
17-
key: deps-node-modules-${{ hashFiles('**/package-lock.json') }}
17+
key: deps-node-modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
1818
- name: Install dependencies
1919
if: steps.cache.outputs.cache-hit != 'true' || inputs.caching != 'true'
2020
run: npm ci

0 commit comments

Comments
 (0)