Skip to content

Commit a0e0a1c

Browse files
Update actions/setup-node action to v4 (#8186)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c19a051 commit a0e0a1c

20 files changed

+32
-32
lines changed

.github/workflows/canary-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Canary release script requires git history and tags.
3333
fetch-depth: 0
3434
- name: Set up Node (20)
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 22.10.0
3838
- name: Yarn install

.github/workflows/check-changeset.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# This makes Actions fetch all Git history so check_changeset script can diff properly.
3636
fetch-depth: 0
3737
- name: Set up Node (20)
38-
uses: actions/setup-node@v3
38+
uses: actions/setup-node@v4
3939
with:
4040
node-version: 22.10.0
4141
- name: Yarn install

.github/workflows/check-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# get all history for the diff
2929
fetch-depth: 0
3030
- name: Set up Node (20)
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: 22.10.0
3434
- name: Yarn install

.github/workflows/check-pkg-paths.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# This makes Actions fetch all Git history so run-changed script can diff properly.
2929
fetch-depth: 0
3030
- name: Set up Node (20)
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: 22.10.0
3434
- name: Yarn install

.github/workflows/deploy-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# This makes Actions fetch all Git history so run-changed script can diff properly.
3737
fetch-depth: 0
3838
- name: Set up node (20)
39-
uses: actions/setup-node@v3
39+
uses: actions/setup-node@v4
4040
with:
4141
node-version: 22.10.0
4242
- name: Yarn install

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# get all history for the diff
3333
fetch-depth: 0
3434
- name: Set up node (20)
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 22.10.0
3838
- name: Yarn install

.github/workflows/health-metrics-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v3
42-
- uses: actions/setup-node@v3
42+
- uses: actions/setup-node@v4
4343
with:
4444
node-version: 22.10.0
4545
- uses: 'google-github-actions/auth@v0'
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v3
59-
- uses: actions/setup-node@v3
59+
- uses: actions/setup-node@v4
6060
with:
6161
node-version: 22.10.0
6262
- uses: 'google-github-actions/auth@v0'

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v3
2626
- name: Set up node (20)
27-
uses: actions/setup-node@v3
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: 22.10.0
3030
- name: yarn install

.github/workflows/prerelease-manual-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Canary release script requires git history and tags.
3636
fetch-depth: 0
3737
- name: Set up node (20)
38-
uses: actions/setup-node@v3
38+
uses: actions/setup-node@v4
3939
with:
4040
node-version: 22.10.0
4141
- name: Yarn install

.github/workflows/release-prod.yml

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

3434
steps:
3535
- name: Set up node (20)
36-
uses: actions/setup-node@v3
36+
uses: actions/setup-node@v4
3737
with:
3838
node-version: 22.10.0
3939
- name: Checkout release branch (with history)

.github/workflows/release-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
if: github.event.inputs.release-branch == 'release' || endsWith(github.event.inputs.release-branch, '-releasebranch')
4848
steps:
4949
- name: Set up node (20)
50-
uses: actions/setup-node@v3
50+
uses: actions/setup-node@v4
5151
with:
5252
node-version: 22.10.0
5353
- name: Merge main into release

.github/workflows/test-all.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
npx @puppeteer/browsers install chrome@stable
4242
- uses: actions/checkout@v3
4343
- name: Set up Node (20)
44-
uses: actions/setup-node@v3
44+
uses: actions/setup-node@v4
4545
with:
4646
node-version: 22.10.0
4747
- name: Test setup and yarn install
@@ -80,7 +80,7 @@ jobs:
8080
- name: Unzip build artifact
8181
run: tar xf build.tar.gz
8282
- name: Set up Node (20)
83-
uses: actions/setup-node@v3
83+
uses: actions/setup-node@v4
8484
with:
8585
node-version: 22.10.0
8686
- name: Test setup and yarn install
@@ -131,7 +131,7 @@ jobs:
131131
- name: Unzip build artifact
132132
run: tar xf build.tar.gz
133133
- name: Set up Node (20)
134-
uses: actions/setup-node@v3
134+
uses: actions/setup-node@v4
135135
with:
136136
node-version: 22.10.0
137137
- name: Test setup and yarn install
@@ -171,7 +171,7 @@ jobs:
171171
- name: Unzip build artifact
172172
run: tar xf build.tar.gz
173173
- name: Set up Node (20)
174-
uses: actions/setup-node@v3
174+
uses: actions/setup-node@v4
175175
with:
176176
node-version: 22.10.0
177177
- name: Test setup and yarn install
@@ -215,7 +215,7 @@ jobs:
215215
- name: Unzip build artifact
216216
run: tar xf build.tar.gz
217217
- name: Set up Node (20)
218-
uses: actions/setup-node@v3
218+
uses: actions/setup-node@v4
219219
with:
220220
node-version: 22.10.0
221221
- run: cp config/ci.config.json config/project.json

.github/workflows/test-changed-auth.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# This makes Actions fetch all Git history so run-changed script can diff properly.
5858
fetch-depth: 0
5959
- name: Set up Node (20)
60-
uses: actions/setup-node@v3
60+
uses: actions/setup-node@v4
6161
with:
6262
node-version: 22.10.0
6363
- name: Test setup and yarn install
@@ -82,7 +82,7 @@ jobs:
8282
# This makes Actions fetch all Git history so run-changed script can diff properly.
8383
fetch-depth: 0
8484
- name: Set up Node (20)
85-
uses: actions/setup-node@v3
85+
uses: actions/setup-node@v4
8686
with:
8787
node-version: 22.10.0
8888
- name: Test setup and yarn install

.github/workflows/test-changed-fcm-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# This makes Actions fetch all Git history so run-changed script can diff properly.
4040
fetch-depth: 0
4141
- name: Set up Node (20)
42-
uses: actions/setup-node@v3
42+
uses: actions/setup-node@v4
4343
with:
4444
node-version: 22.10.0
4545
- name: Test setup and yarn install

.github/workflows/test-changed-firestore-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
continue-on-error: true
7070

7171
- name: Set up Node (20)
72-
uses: actions/setup-node@v3
72+
uses: actions/setup-node@v4
7373
with:
7474
node-version: 22.10.0
7575
- name: install Chrome stable

.github/workflows/test-changed-firestore.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# This makes Actions fetch all Git history so run-changed script can diff properly.
3939
fetch-depth: 0
4040
- name: Set up Node (20)
41-
uses: actions/setup-node@v3
41+
uses: actions/setup-node@v4
4242
with:
4343
node-version: 22.10.0
4444
- name: install Chrome stable
@@ -85,7 +85,7 @@ jobs:
8585
if: ${{ needs.build.outputs.changed == 'true'}}
8686
steps:
8787
- name: Set up Node (20)
88-
uses: actions/setup-node@v3
88+
uses: actions/setup-node@v4
8989
with:
9090
node-version: 22.10.0
9191
- name: install Chrome stable
@@ -113,7 +113,7 @@ jobs:
113113
if: ${{ needs.build.outputs.changed == 'true'}}
114114
steps:
115115
- name: Set up Node (20)
116-
uses: actions/setup-node@v3
116+
uses: actions/setup-node@v4
117117
with:
118118
node-version: 22.10.0
119119
- name: install Chrome stable
@@ -143,7 +143,7 @@ jobs:
143143
if: ${{ github.event_name != 'pull_request' }}
144144
steps:
145145
- name: Set up Node (20)
146-
uses: actions/setup-node@v3
146+
uses: actions/setup-node@v4
147147
with:
148148
node-version: 22.10.0
149149
- name: install Chrome stable
@@ -176,7 +176,7 @@ jobs:
176176
- name: install Firefox stable
177177
run: npx @puppeteer/browsers install firefox@stable
178178
- name: Set up Node (20)
179-
uses: actions/setup-node@v3
179+
uses: actions/setup-node@v4
180180
with:
181181
node-version: 22.10.0
182182
- name: Download build archive
@@ -265,7 +265,7 @@ jobs:
265265
- name: Unzip build artifact
266266
run: tar xf build.tar.gz
267267
- name: Set up Node (20)
268-
uses: actions/setup-node@v3
268+
uses: actions/setup-node@v4
269269
with:
270270
node-version: 22.10.0
271271
- name: Test setup

.github/workflows/test-changed-misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# This makes Actions fetch all Git history so run-changed script can diff properly.
3333
fetch-depth: 0
3434
- name: Set up Node (20)
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 22.10.0
3838
- name: install Chrome stable

.github/workflows/test-changed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# This makes Actions fetch all Git history so run-changed script can diff properly.
3333
fetch-depth: 0
3434
- name: Set up Node (20)
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 22.10.0
3838
- name: install Chrome stable
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
fetch-depth: 0
6060
- name: Set up Node (20)
61-
uses: actions/setup-node@v3
61+
uses: actions/setup-node@v4
6262
with:
6363
node-version: 22.10.0
6464
- name: install Firefox stable

.github/workflows/test-firebase-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# This makes Actions fetch all Git history so run-changed script can diff properly.
3333
fetch-depth: 0
3434
- name: Set up Node (20)
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 22.10.0
3838
- name: install Chrome stable

.github/workflows/update-api-reports.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ref: ${{ github.event.pull_request.head.ref }}
3232
token: ${{ github.token }}
3333
- name: Set up node (20)
34-
uses: actions/setup-node@v3
34+
uses: actions/setup-node@v4
3535
with:
3636
node-version: 22.10.0
3737
- name: Yarn install

0 commit comments

Comments
 (0)