From 9bf22aa5bdaf67bd8ee233871c7f2a319b919e2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E6=A1=93=E6=A1=93?= Date: Thu, 2 Mar 2023 22:33:39 +0800 Subject: [PATCH] chore(ci): update Node.js version in CI to `18` from `16` --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da34b2d..da70279 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 registry-url: https://registry.npmjs.com # Step III - name: Install Dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63592c3..32ea38e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - 'v*' jobs: - # NPM Registry Release + # NPM Registry & GitHub Release release: # Use Ubuntu 22.04 runs-on: ubuntu-22.04 @@ -20,7 +20,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 registry-url: https://registry.npmjs.com # Step III - name: Install Dependencies