From 99dbb66d9c403ed274a272468bff83565d9ec540 Mon Sep 17 00:00:00 2001 From: Christian <59786962+christian-hawk@users.noreply.github.com> Date: Fri, 30 Dec 2022 17:41:16 -0300 Subject: [PATCH] fix!: drop support to node 12 (#520) * fix: remove node 12 from engines * ci: remove node 12 from actions --- .github/workflows/codecov.yml | 2 +- .github/workflows/lint.yml | 2 +- package-lock.json | 2 +- package.json | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index bbba2be4..2f120122 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [14.x, 16.x] # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ddddc793..c5649a25 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x] + node-version: [14.x, 16.x steps: - uses: actions/checkout@v2 diff --git a/package-lock.json b/package-lock.json index 16ba17b8..30028d6b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -74,7 +74,7 @@ "sinon": "^12.0.1" }, "engines": { - "node": ">=12.19.0 <=16" + "node": ">=14 <=16" } }, "node_modules/@ampproject/remapping": { diff --git a/package.json b/package.json index faf2188b..9b95a0bf 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ ] }, "engines": { - "node": ">=12.19.0 <=16" + "node": ">=14 <=16" }, "scripts": { "start": "NODE_ENV=production node server/app.js", @@ -101,7 +101,7 @@ "type": "git", "url": "git+https://github.com/GluuFederation/gluu-passport.git" }, - "author": "", + "author": "Christian Eland", "license": "Apache2", "bugs": { "url": "https://github.com/GluuFederation/gluu-passport/issues"