Skip to content

Commit e131185

Browse files
chore(deps): bump actions/cache from 3 to 4 (#2196)
1 parent b8ac64f commit e131185

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
# Separate cache for build dir, we reuse it in release publish workflow
1818
- name: Cache build output
19-
uses: actions/cache@v3.3.1
19+
uses: actions/cache@v4
2020
id: build-cache
2121
with:
2222
path: build

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cache: 'npm'
4040

4141
- name: Cache build output
42-
uses: actions/cache@v3.3.1
42+
uses: actions/cache@v4
4343
id: build-cache
4444
with:
4545
path: build
@@ -49,7 +49,7 @@ jobs:
4949
${{ runner.os }}-build-${{ hashFiles('package.json', 'package-lock.json', 'public', 'src/**', '*.js', '*.ts') }}
5050
5151
- name: Cache bigger downloads
52-
uses: actions/cache@v3.3.1
52+
uses: actions/cache@v4
5353
id: cache
5454
with:
5555
path: ${{ github.workspace }}/.cache
@@ -213,7 +213,7 @@ jobs:
213213
persist-credentials: false
214214

215215
- name: Cache bigger downloads
216-
uses: actions/cache@v3.3.1
216+
uses: actions/cache@v4
217217
id: cache
218218
with:
219219
path: ${{ github.workspace }}/.cache
@@ -223,7 +223,7 @@ jobs:
223223
${{ runner.os }}-
224224
225225
- name: Cache build dir
226-
uses: actions/cache@v3.3.1
226+
uses: actions/cache@v4
227227
id: build-cache
228228
with:
229229
path: build

.github/workflows/test-e2e.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
cache: 'npm'
1616

1717
- name: Cache test-build output
18-
uses: actions/cache@v3.3.1
18+
uses: actions/cache@v4
1919
id: test-build-cache
2020
with:
2121
path: build
@@ -24,7 +24,7 @@ jobs:
2424
test-build-${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json', 'public', 'src/**', '*.js', '*.ts') }}
2525
2626
- name: Cache node_modules
27-
uses: actions/cache@v3.3.1
27+
uses: actions/cache@v4
2828
id: test-npm-cache
2929
with:
3030
path: node_modules
@@ -60,7 +60,7 @@ jobs:
6060
cache: 'npm'
6161

6262
- name: Cache test-build output
63-
uses: actions/cache@v3.3.1
63+
uses: actions/cache@v4
6464
id: test-build-cache
6565
with:
6666
path: build
@@ -70,7 +70,7 @@ jobs:
7070
7171
# We don't want to re-install dependencies for every sharded run
7272
- name: Cache node_modules
73-
uses: actions/cache@v3.3.1
73+
uses: actions/cache@v4
7474
id: test-npm-cache
7575
with:
7676
path: node_modules
@@ -82,7 +82,7 @@ jobs:
8282
run: npm ci --prefer-offline --no-audit --progress=false
8383

8484
# Cache playwright binaries
85-
- uses: actions/cache@v3
85+
- uses: actions/cache@v4
8686
id: playwright-cache
8787
with:
8888
path: |
@@ -93,7 +93,7 @@ jobs:
9393
if: steps.playwright-cache.outputs.cache-hit != 'true'
9494

9595
- name: Cache nyc_output dir
96-
uses: actions/cache@v3.3.1
96+
uses: actions/cache@v4
9797
id: nyc_output-cache
9898
with:
9999
path: ./.nyc_output
@@ -131,7 +131,7 @@ jobs:
131131
cache: 'npm'
132132

133133
- name: Cache nyc_output dir
134-
uses: actions/cache@v3.3.1
134+
uses: actions/cache@v4
135135
id: nyc_output-cache
136136
with:
137137
path: ./.nyc_output

0 commit comments

Comments
 (0)