Skip to content

Commit 48df749

Browse files
authored
build: upgrade node version (#573)
1 parent 5b52d16 commit 48df749

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
3131

3232
- name: Setup Node.js
33-
uses: actions/setup-node@v1
33+
uses: actions/setup-node@v3
3434
with:
35-
node-version: 10.x
35+
node-version: 16.x
3636

3737
- name: Install dependencies
3838
run: yarn install --frozen-lockfile && yarn docs:install --frozen-lockfile

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
path: '**/node_modules'
1818
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
1919

20-
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
20+
- name: Use Node.js
21+
uses: actions/setup-node@v3
2222
with:
23-
node-version: ${{ matrix.node-version }}
23+
node-version: 16.x
2424

2525
- name: Install dependencies
2626
run: |

.github/workflows/publish-github-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
DIST_TAG: ${{ github.event.inputs.distTag }}
3434
strategy:
3535
matrix:
36-
node-version: [ 12.x ]
36+
node-version: [ 16.x ]
3737
steps:
3838
- name: Checkout
3939
uses: actions/checkout@v2
4040

4141
- name: Use Node.js ${{ matrix.node-version }}
42-
uses: actions/setup-node@v2
42+
uses: actions/setup-node@v3
4343
with:
4444
node-version: ${{ matrix.node-version }}
4545
cache: 'yarn'
@@ -57,7 +57,7 @@ jobs:
5757
run: yarn test
5858

5959
- name: Set registry url
60-
uses: actions/setup-node@v2
60+
uses: actions/setup-node@v3
6161
with:
6262
registry-url: 'https://npm.pkg.github.com'
6363

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
run: pip install boto3==1.14.63
5858

5959
- name: Setup Node.js
60-
uses: actions/setup-node@v1
60+
uses: actions/setup-node@v3
6161
with:
62-
node-version: 10.x
62+
node-version: 16.x
6363

6464
- name: Install dependencies
6565
run: yarn install --frozen-lockfile

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
3131

3232
- name: Use Node.js ${{ matrix.node-version }}
33-
uses: actions/setup-node@v1
33+
uses: actions/setup-node@v3
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636

0 commit comments

Comments
 (0)