From af5442ae8c52e7bda438b38c001780691e3ed8d3 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 --- action.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.json b/package.json index 4753a8b0..fcdaf835 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",