Skip to content

Commit 6972de6

Browse files
Merge master into release
2 parents 2cdb529 + 6d332b4 commit 6972de6

17 files changed

+33
-32
lines changed

.github/ISSUE_TEMPLATE/bug_report_v2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🐞 Bug Report V2
22
description: File a bug report
33
title: '[Bug]: '
4+
labels: 'new, type: question'
45
body:
56
- type: markdown
67
id: before-you-start

.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

.github/workflows/release-log.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Checkout Repo
1515
uses: actions/checkout@master
1616

17-
- name: Setup Node.js 14.x
17+
- name: Setup Node.js 16.x
1818
uses: actions/setup-node@master
1919
with:
20-
node-version: 14.x
20+
node-version: 16.x
2121

2222
- name: Get PR number and send to tracker.
2323
run: node scripts/ci/log-changesets.js

.github/workflows/release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1919
fetch-depth: 0
2020

21-
- name: Setup Node.js 14.x
21+
- name: Setup Node.js 16.x
2222
uses: actions/setup-node@master
2323
with:
24-
node-version: 14.x
24+
node-version: 16.x
2525

2626
- name: Install Dependencies
2727
run: yarn

.github/workflows/release-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
contents: write
1919

2020
steps:
21-
- name: Set up Node (14)
21+
- name: Set up node (16)
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: 14.x
24+
node-version: 16.x
2525
- name: Checkout release branch (with history)
2626
uses: actions/checkout@master
2727
with:

.github/workflows/release-staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
# Block this workflow if run on a non-release branch.
2525
if: github.event.inputs.release-branch == 'release' || endsWith(github.event.inputs.release-branch, '-releasebranch')
2626
steps:
27-
- name: Set up Node (14)
27+
- name: Set up node (16)
2828
uses: actions/setup-node@v3
2929
with:
30-
node-version: 14.x
30+
node-version: 16.x
3131
- name: Merge master into release
3232
uses: actions/github-script@v6
3333
with:

.github/workflows/release-tweet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
steps:
2121
- name: Checkout Repo
2222
uses: actions/checkout@master
23-
- name: Setup Node.js 14.x
23+
- name: Setup Node.js 16.x
2424
uses: actions/setup-node@master
2525
with:
26-
node-version: 14.x
26+
node-version: 16.x
2727
- name: Poll release notes page on devsite
2828
run: node scripts/ci/poll_release_notes.js
2929
env:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
# checkout HEAD commit instead of merge commit
1717
ref: ${{ github.event.pull_request.head.ref }}
1818
token: ${{ github.token }}
19-
- name: Set up Node (14)
19+
- name: Set up node (16)
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: 14.x
22+
node-version: 16.x
2323
- name: Yarn install
2424
run: yarn
2525
- name: Update API reports

0 commit comments

Comments
 (0)