From 24bce11b05df8513894e58636242fa960eb09b66 Mon Sep 17 00:00:00 2001 From: PikachuEXE Date: Wed, 11 May 2022 01:35:58 +0800 Subject: [PATCH] * Update all GH workflow config to update node 14.x > 16.x (#1898) --- .github/workflows/build.yml | 2 +- .github/workflows/linter.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a530791cc..8dc0f5f8c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: build: strategy: matrix: - node-version: [14.x] + node-version: [16.x] runtime: [ linux-x64, linux-arm64, win-x64, osx-x64 ] include: - runtime: linux-x64 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 7d74006c6..7402cf3fb 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -18,10 +18,10 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - uses: actions/checkout@v2 - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v2 with: - node-version: 14.x + node-version: 16.x cache: "yarn" - run: npm run ci - run: npm run lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 781c80e0b..962124ffd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: build: strategy: matrix: - node-version: [14.x] + node-version: [16.x] runtime: [ linux-x64, linux-arm64, win-x64, osx-x64 ] include: - runtime: linux-x64