From f1b9c0bc242e3e40855e84c8efe68a5e9818d09b Mon Sep 17 00:00:00 2001 From: Chengzhong Wu Date: Sat, 20 Jan 2024 02:28:59 +0800 Subject: [PATCH] chore: remove v16.x regular CI runs (#1437) --- .github/workflows/ci-win.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/linter.yml | 2 +- README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index f4046eaa1..b18e68d50 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - node-version: [ 16.x, 18.x, 20.x ] + node-version: [ 18.x, 20.x, 21.x ] architecture: [x64, x86] os: - windows-2019 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60d1ddc84..2f400cac9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - node-version: [ 16.x, 18.x, 20.x ] + node-version: [ 18.x, 20.x, 21.x ] os: - macos-latest - ubuntu-latest diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 1d4bd1683..e25a823d9 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -10,7 +10,7 @@ jobs: if: github.repository == 'nodejs/node-addon-api' strategy: matrix: - node-version: [16.x] + node-version: [20.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 35f731cf0..d48d07b0d 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ This allows addons built with it to run with Node.js versions which support the **However** the node-addon-api support model is to support only the active LTS Node.js versions. This means that every year there will be a new major which drops support for the Node.js LTS version which has gone out of service. -The oldest Node.js version supported by the current version of node-addon-api is Node.js 16.x. +The oldest Node.js version supported by the current version of node-addon-api is Node.js 18.x. ## Setup - [Installation and usage](doc/setup.md)