Skip to content

Commit 6d332b4

Browse files
authored
Update Node version to 16 in workflows (#7291)
1 parent a0bb768 commit 6d332b4

16 files changed

+32
-32
lines changed

.github/workflows/canary-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
with:
1818
# Canary release script requires git history and tags.
1919
fetch-depth: 0
20-
- name: Set up Node (14)
20+
- name: Set up Node (16)
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 14.x
23+
node-version: 16.x
2424
- name: Yarn install
2525
run: yarn
2626
- name: Deploy canary

.github/workflows/check-changeset.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
with:
2121
# This makes Actions fetch all Git history so check_changeset script can diff properly.
2222
fetch-depth: 0
23-
- name: Set up Node (14)
23+
- name: Set up Node (16)
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: 14.x
26+
node-version: 16.x
2727
- name: Yarn install
2828
run: yarn
2929
- name: Run changeset script

.github/workflows/check-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
with:
1414
# get all history for the diff
1515
fetch-depth: 0
16-
- name: Set up Node (14)
16+
- name: Set up Node (16)
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 14.x
19+
node-version: 16.x
2020
- name: Yarn install
2121
run: yarn
2222
- name: Run doc generation (devsite docs)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
with:
1414
# This makes Actions fetch all Git history so run-changed script can diff properly.
1515
fetch-depth: 0
16-
- name: Set up Node (14)
16+
- name: Set up Node (16)
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 14.x
19+
node-version: 16.x
2020
- name: Yarn install
2121
run: yarn
2222
- name: Yarn build

.github/workflows/deploy-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
with:
2121
# This makes Actions fetch all Git history so run-changed script can diff properly.
2222
fetch-depth: 0
23-
- name: Set up Node (14)
23+
- name: Set up node (16)
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: 14.x
26+
node-version: 16.x
2727
- name: Yarn install
2828
run: yarn
2929
- name: Deploy project config if needed

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
steps:
1818
- name: Checkout Repo
1919
uses: actions/checkout@master
20-
- name: Set up Node (14)
20+
- name: Set up Node (16)
2121
uses: actions/setup-node@master
2222
with:
23-
node-version: 14.x
23+
node-version: 16.x
2424
- name: install Chrome stable
2525
run: |
2626
sudo apt-get update

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
with:
1818
# get all history for the diff
1919
fetch-depth: 0
20-
- name: Set up Node (14)
20+
- name: Set up node (16)
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 14.x
23+
node-version: 16.x
2424
- name: Yarn install
2525
run: yarn
2626
- name: Run formatting script

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v3
2727
- uses: actions/setup-node@v3
2828
with:
29-
node-version: 14.x
29+
node-version: 16.x
3030
- uses: 'google-github-actions/auth@v0'
3131
with:
3232
credentials_json: '${{ secrets.GCP_SA_KEY }}'
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v3
4444
- uses: actions/setup-node@v3
4545
with:
46-
node-version: 14.x
46+
node-version: 16.x
4747
- uses: 'google-github-actions/auth@v0'
4848
with:
4949
credentials_json: '${{ secrets.GCP_SA_KEY }}'

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: Set up Node (14)
12+
- name: Set up node (16)
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 14.x
15+
node-version: 16.x
1616
- name: yarn install
1717
run: yarn
1818
- name: yarn lint

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
with:
2121
# Canary release script requires git history and tags.
2222
fetch-depth: 0
23-
- name: Set up Node (14)
23+
- name: Set up node (16)
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: 14.x
26+
node-version: 16.x
2727
- name: Yarn install
2828
run: yarn
2929
- name: Deploy prerelease

0 commit comments

Comments
 (0)