From 9dc222980594cecae55d7c69cd1ba56fda984983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=B3pez=20Esp=C3=ADnola?= Date: Thu, 21 Mar 2024 16:29:12 +0100 Subject: [PATCH] Fix #23: Use node20 runner instead of EOL node16 (#24) * Use node20 runner instead of EOL node16 * Updated dependencies to node ^20.11 --- action.yml | 2 +- package-lock.json | 18 +++++++++++++----- package.json | 4 ++-- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/action.yml b/action.yml index 605729f..5e1eb51 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ description: | This action installs **DDEV** in your Github Workflow. author: 'Jonas Eberle and DDEV contributors' runs: - using: 'node16' + using: 'node20' main: 'lib/main.js' branding: icon: cpu diff --git a/package-lock.json b/package-lock.json index ab205c8..ad9263f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,10 +10,10 @@ "license": "GPL v3", "dependencies": { "@actions/core": "^1.10.0", - "@types/node": "^18.16.0" + "@types/node": "^20.11.25" }, "engines": { - "node": "^18.16.0" + "node": "^20.11.0" } }, "node_modules/@actions/core": { @@ -35,9 +35,12 @@ } }, "node_modules/@types/node": { - "version": "18.16.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.0.tgz", - "integrity": "sha512-BsAaKhB+7X+H4GnSjGhJG9Qi8Tw+inU9nJDwmD5CgOmBLEI6ArdhikpLX7DjbjDRDTbqZzU2LSQNZg8WGPiSZQ==" + "version": "20.11.25", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.25.tgz", + "integrity": "sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw==", + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/tunnel": { "version": "0.0.6", @@ -48,6 +51,11 @@ "node": ">=0.6.11 <=0.7.0 || >=0.7.3" } }, + "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/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", diff --git a/package.json b/package.json index 7cfd399..f1cba53 100644 --- a/package.json +++ b/package.json @@ -15,11 +15,11 @@ "setup" ], "engines": { - "node": "^18.16.0" + "node": "^20.11.0" }, "author": "Jonas Eberle", "dependencies": { "@actions/core": "^1.10.0", - "@types/node": "^18.16.0" + "@types/node": "^20.11.25" } }