Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/npm_install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- name: Cache dependencies
id: cache-node-modules
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c
uses: actions/cache/restore@v4
with:
key: v1-deps-{{ hashFiles("package-lock.json") }}
path: node_modules
Expand All @@ -15,7 +15,7 @@ runs:
shell: bash
- name: save_cache
if: steps.cache-node-modules.outputs.cache-hit != 'true'
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c
uses: actions/cache/save@v4
with:
path: node_modules
key: v1-deps-{{ hashFiles("package-lock.json") }}
Loading