Skip to content

Commit

Permalink
⬆️ upgrade setup-node version
Browse files Browse the repository at this point in the history
  • Loading branch information
depapp committed Aug 27, 2024
1 parent 04d6577 commit 10d2ad4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: cache npm
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}

- name: cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 10d2ad4

Please sign in to comment.