From 0d1b530548c91e6b8c213bfe8850fd6093bf1374 Mon Sep 17 00:00:00 2001 From: Christian Simon Date: Wed, 21 Feb 2024 11:31:59 +0000 Subject: [PATCH] chore(deps): Update required min nodejs version to v18 Support for nodejs v16 ended 2023-09-11 https://endoflife.date/nodejs --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b61c314..3a4f660 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,7 @@ jobs: - name: Setup .npmrc file to publish to npm uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '20.x' registry-url: 'https://registry.npmjs.org' - name: Install modules run: npm install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf13cdd..b846cc0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: matrix: os: - ubuntu-latest - node: [14.x, 16.x, 18.x] + node: [18.x, 20.x, 21.x] steps: - uses: actions/checkout@v2 diff --git a/package.json b/package.json index 8681663..2c80edd 100644 --- a/package.json +++ b/package.json @@ -74,6 +74,6 @@ "webpack-cli": "^4.8.0" }, "engines": { - "node": "^12.20.0 || >=14.13.1" + "node": ">=v18" } }