Skip to content

Commit 7892960

Browse files
fix: update cache action version in CI workflow
1 parent f4739c9 commit 7892960

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pre-compile-and-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
uses: actions/checkout@v2
1616

1717
- name: Setup Node
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v1
1919
with:
2020
node-version: 12
2121
registry-url: https://registry.npmjs.org
2222

2323
- name: Cache Node Module Dependencies
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
26-
path: '**/node_modules'
26+
path: "**/node_modules"
2727
key: nodemodules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
2828

2929
- name: Install Dependencies
3030
run: npm install
31-
31+
3232
- name: Build Project
3333
run: npm run build

0 commit comments

Comments
 (0)