From 68f7ab14dd160722605eb67ceb95f8b9282c5e9f Mon Sep 17 00:00:00 2001 From: JW Date: Sun, 3 Sep 2023 19:52:04 +0800 Subject: [PATCH] :green_heart: remove node14 & node12 support --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/snapshot-release.yml | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94333c0..41a2bcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [16.x, 18.x] steps: - name: checkout code repository diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2432ca4..43f6928 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: setup node.js uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - uses: pnpm/action-setup@v2 name: Install pnpm id: pnpm-install diff --git a/.github/workflows/snapshot-release.yml b/.github/workflows/snapshot-release.yml index 8dcfb5a..4edef93 100644 --- a/.github/workflows/snapshot-release.yml +++ b/.github/workflows/snapshot-release.yml @@ -15,6 +15,10 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 + - name: setup node.js + uses: actions/setup-node@v2 + with: + node-version: 16 - uses: pnpm/action-setup@v2 name: Install pnpm id: pnpm-install