Skip to content

Commit 5ec4b36

Browse files
committed
Fix deployment by upgrading acitons-cache to v4
1 parent 16f2c6e commit 5ec4b36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v2
1818
- name: Cache Node modules
19-
uses: actions/cache@v2
19+
uses: actions/cache@v4
2020
with:
2121
path: ~/.npm
2222
key: npm-${{ runner.os }}-${{ hashFiles('package-lock.json') }}

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v2
2323
- name: Cache Node modules
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: ~/.npm
2727
key: npm-${{ runner.os }}-${{ hashFiles('package-lock.json') }}

0 commit comments

Comments
 (0)