From d90de66ecf51a6cb04a69a10b0ffd2b6effcb8f6 Mon Sep 17 00:00:00 2001 From: Branden Cash Date: Wed, 24 Jan 2024 13:06:12 -0700 Subject: [PATCH] feat(node)!: bump node to node20 --- action.yml | 2 +- package-lock.json | 30 +++++++++++++++++++++++------- package.json | 6 +++--- 3 files changed, 27 insertions(+), 11 deletions(-) diff --git a/action.yml b/action.yml index 995aa31..eaed535 100644 --- a/action.yml +++ b/action.yml @@ -6,5 +6,5 @@ inputs: description: 'Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0' default: '3.8.2' runs: - using: 'node16' + using: 'node20' main: 'lib/setup-maven.js' diff --git a/package-lock.json b/package-lock.json index 34004cd..bc7e651 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "typed-rest-client": "^1.5.0" }, "devDependencies": { - "@types/node": "^16.11.7", + "@types/node": "^20.11.6", "@types/semver": "^6.0.0", "husky": "^2.3.0", "prettier": "^1.17.1", @@ -205,9 +205,12 @@ } }, "node_modules/@types/node": { - "version": "16.11.64", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.64.tgz", - "integrity": "sha512-z5hPTlVFzNwtJ2LNozTpJcD1Cu44c4LNuzaq1mwxmiHWQh2ULdR6Vjwo1UGldzRpzL0yUEdZddnfqGW2G70z6Q==" + "version": "20.11.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.6.tgz", + "integrity": "sha512-+EOokTnksGVgip2PbYbr3xnR7kZigh4LbybAfBAw5BpnQ+FqBYUsvCEjYd70IXKlbohQ64mzEYmMtlWUY8q//Q==", + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/normalize-package-data": { "version": "2.4.0", @@ -1191,6 +1194,11 @@ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz", "integrity": "sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ==" }, + "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==" + }, "node_modules/universal-user-agent": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.1.0.tgz", @@ -1446,9 +1454,12 @@ } }, "@types/node": { - "version": "16.11.64", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.64.tgz", - "integrity": "sha512-z5hPTlVFzNwtJ2LNozTpJcD1Cu44c4LNuzaq1mwxmiHWQh2ULdR6Vjwo1UGldzRpzL0yUEdZddnfqGW2G70z6Q==" + "version": "20.11.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.6.tgz", + "integrity": "sha512-+EOokTnksGVgip2PbYbr3xnR7kZigh4LbybAfBAw5BpnQ+FqBYUsvCEjYd70IXKlbohQ64mzEYmMtlWUY8q//Q==", + "requires": { + "undici-types": "~5.26.4" + } }, "@types/normalize-package-data": { "version": "2.4.0", @@ -2220,6 +2231,11 @@ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz", "integrity": "sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ==" }, + "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==" + }, "universal-user-agent": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.1.0.tgz", diff --git a/package.json b/package.json index 7fd4923..974d4b4 100644 --- a/package.json +++ b/package.json @@ -21,11 +21,11 @@ "@actions/github": "^1.0.0", "@actions/io": "^1.0.0", "@actions/tool-cache": "1.3.1", - "typed-rest-client": "^1.5.0", - "semver": "^6.1.1" + "semver": "^6.1.1", + "typed-rest-client": "^1.5.0" }, "devDependencies": { - "@types/node": "^16.11.7", + "@types/node": "^20.11.6", "@types/semver": "^6.0.0", "husky": "^2.3.0", "prettier": "^1.17.1",