Skip to content

Commit 9c691dd

Browse files
committed
feat: bump github actions version
1 parent 7dc4302 commit 9c691dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
with:
1414
persist-credentials: false
1515

1616
- name: restore node modules
17-
uses: actions/cache@v2
17+
uses: actions/cache@v4
1818
id: node-modules-cache
1919
with:
2020
path: node_modules
2121
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
2222

2323
- name: Install Deps
2424
if: steps.node-modules-cache.outputs.cache-hit != 'true'
25-
run: npm install
25+
run: npm ci
2626

2727
- name: Run test
2828
run: npm run test

0 commit comments

Comments
 (0)