Skip to content

Commit

Permalink
ci: 💚 update actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
bherr2 authored Jan 7, 2025
1 parent 5c770c9 commit 3f78a16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-node-js/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ runs:
with:
node-version: ${{ inputs.node-version }}
- name: Cache .npm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache node_modules
id: modules_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 3f78a16

Please sign in to comment.