Skip to content

Commit

Permalink
Update to actions/cache@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianReeves committed Sep 6, 2024
1 parent 978944b commit c42ebdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
node-version: ${{ matrix.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 Elm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.elm
key: ${{ runner.os }}-elm-${{ hashFiles('**/elm.json') }}
Expand Down

0 comments on commit c42ebdb

Please sign in to comment.