From 436626188b7d882cfd69fb764a9000ac92b80b2a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Oct 2025 03:15:16 +0000 Subject: [PATCH] feat: move action runtime to node24 and require Node >=24 Co-authored-by: chenrui333 <1580956+chenrui333@users.noreply.github.com> --- action.yml | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index cb49005..7433eea 100644 --- a/action.yml +++ b/action.yml @@ -71,7 +71,7 @@ outputs: assets: description: "JSON array containing information about each uploaded asset, in the format given [here](https://docs.github.com/en/rest/reference/repos#upload-a-release-asset--code-samples) (minus the `uploader` field)" runs: - using: "node20" + using: "node24" main: "dist/index.js" branding: color: "green" diff --git a/package.json b/package.json index 61197bc..8a3a792 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,9 @@ "actions" ], "author": "softprops", + "engines": { + "node": ">=24" + }, "dependencies": { "@actions/core": "^1.11.1", "@actions/github": "^6.0.1",