From c5b2c060bb59a86799a0b5b234f881dc970ec08c Mon Sep 17 00:00:00 2001 From: Roman Prudnikov Date: Wed, 19 Mar 2025 10:49:34 +0100 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20=F0=9F=A4=96=20allow=20Node=20vers?= =?UTF-8?q?ions=20above=2021;=20update=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This Feb, Node.js 22 became the Active LTS version. With the engine restriction it's impossible to build to package on a newer Node.js version. Local testing showed that the package works fine on Node.js 22, thus the update. --- .gitignore | 22 +++++++++++++++++++++- package.json | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 096746c14..808a7daae 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,21 @@ -/node_modules/ \ No newline at end of file +/node_modules/ + +.DS_Store +.idea +.vscode +.cursor + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +.npm +.npmrc +.yarn/* +.pnp.* + +.node_repl_history + +*.tgz + +*.tsbuildinfo diff --git a/package.json b/package.json index 288efac52..7acf6cdf7 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": ">=20.0.0" }, "scripts": { "build": "npm run build:types && ncc build src/main.ts", From d4772506580633912543c5f40653cc191e05666c Mon Sep 17 00:00:00 2001 From: Roman Prudnikov Date: Thu, 20 Mar 2025 13:54:17 +0100 Subject: [PATCH 2/2] Bump dependencies --- package-lock.json | 35 +++++++++++------------------------ package.json | 4 ++-- 2 files changed, 13 insertions(+), 26 deletions(-) diff --git a/package-lock.json b/package-lock.json index a5c09ded2..997b54c9a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "7.0.1", "license": "MIT", "dependencies": { - "@actions/core": "^1.10.1", + "@actions/core": "^1.11.1", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.0", "@actions/glob": "^0.4.0", @@ -48,12 +48,12 @@ } }, "node_modules/@actions/core": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", - "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.11.1.tgz", + "integrity": "sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==", "dependencies": { - "@actions/http-client": "^2.0.1", - "uuid": "^8.3.2" + "@actions/exec": "^1.1.1", + "@actions/http-client": "^2.0.1" } }, "node_modules/@actions/exec": { @@ -7170,14 +7170,6 @@ "punycode": "^2.1.0" } }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/v8-to-istanbul": { "version": "9.1.3", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz", @@ -7356,12 +7348,12 @@ "dev": true }, "@actions/core": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", - "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.11.1.tgz", + "integrity": "sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==", "requires": { - "@actions/http-client": "^2.0.1", - "uuid": "^8.3.2" + "@actions/exec": "^1.1.1", + "@actions/http-client": "^2.0.1" } }, "@actions/exec": { @@ -12576,11 +12568,6 @@ "punycode": "^2.1.0" } }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - }, "v8-to-istanbul": { "version": "9.1.3", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz", diff --git a/package.json b/package.json index 7acf6cdf7..117fa585e 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ } }, "dependencies": { - "@actions/core": "^1.10.1", + "@actions/core": "^1.11.1", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.0", "@actions/glob": "^0.4.0", @@ -64,4 +64,4 @@ "ts-jest": "^29.1.1", "typescript": "^5.2.2" } -} \ No newline at end of file +}