Skip to content

Commit

Permalink
Merge pull request #20 from Jorciney/renovate/actions-cache-3.x
Browse files Browse the repository at this point in the history
Update actions/cache action to v3
  • Loading branch information
Jorciney authored Jan 11, 2024
2 parents 3f80152 + 155be0f commit 36ac782
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-node@v3
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: node-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Restore node_modules from cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: node-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Restore node_modules from cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: node-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -70,7 +70,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Restore node_modules from cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: node-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down

0 comments on commit 36ac782

Please sign in to comment.