From c64632881f8854fcc1b284931a8e976657179749 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Houllier?= Date: Tue, 17 Dec 2024 16:08:32 +0100 Subject: [PATCH] feat!: set runs.using to node22 NodeJS 22 is the LTS from October 2024 --- .../actions/install-dependencies/action.yml | 2 +- action.yml | 2 +- package-lock.json | 34 ++++++++++--------- package.json | 4 +-- 4 files changed, 22 insertions(+), 20 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index c5f23930..11d080fe 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -5,7 +5,7 @@ runs: steps: - uses: actions/setup-node@v3 with: - node-version: '20.x' + node-version: '22.x' cache: npm - run: npm ci diff --git a/action.yml b/action.yml index 12a726af..2dccb146 100644 --- a/action.yml +++ b/action.yml @@ -36,5 +36,5 @@ outputs: result: description: The return value of the script, stringified with `JSON.stringify` runs: - using: node20 + using: node22 main: dist/index.js diff --git a/package-lock.json b/package-lock.json index abad4c25..9e2ca674 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@octokit/core": "^5.0.1", "@octokit/plugin-request-log": "^4.0.0", "@octokit/plugin-retry": "^6.0.1", - "@types/node": "^20.9.0" + "@types/node": "^22.10.2" }, "devDependencies": { "@types/jest": "^29.5.5", @@ -35,7 +35,7 @@ "typescript": "^5.2.2" }, "engines": { - "node": ">=20.0.0 <21.0.0" + "node": ">=22.0.0 <23.0.0" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -1672,11 +1672,12 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", - "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", + "version": "22.10.2", + "resolved": "https://artifactory.csq.fr/api/npm/npm/@types/node/-/node-22.10.2.tgz", + "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", + "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~6.20.0" } }, "node_modules/@types/semver": { @@ -7113,9 +7114,10 @@ } }, "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + "version": "6.20.0", + "resolved": "https://artifactory.csq.fr/api/npm/npm/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "license": "MIT" }, "node_modules/universal-user-agent": { "version": "6.0.0", @@ -8652,11 +8654,11 @@ "dev": true }, "@types/node": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", - "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", + "version": "22.10.2", + "resolved": "https://artifactory.csq.fr/api/npm/npm/@types/node/-/node-22.10.2.tgz", + "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", "requires": { - "undici-types": "~5.26.4" + "undici-types": "~6.20.0" } }, "@types/semver": { @@ -12542,9 +12544,9 @@ } }, "undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + "version": "6.20.0", + "resolved": "https://artifactory.csq.fr/api/npm/npm/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==" }, "universal-user-agent": { "version": "6.0.0", diff --git a/package.json b/package.json index 4753a8b0..7d8780d3 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "types": "types/async-function.d.ts", "private": true, "engines": { - "node": ">=20.0.0 <21.0.0" + "node": ">=22.0.0 <23.0.0" }, "scripts": { "build": "npm run build:types && ncc build src/main.ts", @@ -47,7 +47,7 @@ "@octokit/core": "^5.0.1", "@octokit/plugin-request-log": "^4.0.0", "@octokit/plugin-retry": "^6.0.1", - "@types/node": "^20.9.0" + "@types/node": "^22.10.2" }, "devDependencies": { "@types/jest": "^29.5.5",