From f9d85c0c368ca2f3d211d21347e4515b37814f42 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Thu, 26 Mar 2026 19:54:10 +0100 Subject: [PATCH] chore: Upgrade GitHub Action runtime from Node 20 to Node 24 Update action.yml to use node24 runtime and bump engines.node to >=24 in package.json. Rebuild dist/index.js. Co-Authored-By: Claude Opus 4.6 (1M context) --- action.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index b6ecef9..e97731c 100644 --- a/action.yml +++ b/action.yml @@ -13,7 +13,7 @@ inputs: required: true description: "YAML config" runs: - using: node20 + using: node24 main: 'dist/index.js' # env: diff --git a/package.json b/package.json index a3ff6fe..2730f3c 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ ".": "./dist/index.js" }, "engines": { - "node": ">=20" + "node": ">=24" }, "scripts": { "format:write": "npx prettier --write .",