From 22ee621fbea4c511b8a21da7eeadac557ed67f73 Mon Sep 17 00:00:00 2001 From: Ronen Slavin Date: Fri, 8 May 2026 10:16:07 +0300 Subject: [PATCH] chore: bump action runtime to node24 GitHub is forcing Node 24 on runners June 2 and removing Node 20 support on September 16. Both action.yml files declared `using: node20`, which would break the action on that date. Co-Authored-By: Claude Opus 4.7 (1M context) --- action.yml | 2 +- attest/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index b0944cb..b8b9b63 100644 --- a/action.yml +++ b/action.yml @@ -99,6 +99,6 @@ inputs: required: false runs: - using: node20 + using: node24 main: 'dist/main/index.js' post: 'dist/post/index.js' diff --git a/attest/action.yml b/attest/action.yml index 3614706..c99ebd8 100644 --- a/attest/action.yml +++ b/attest/action.yml @@ -87,5 +87,5 @@ inputs: default: 'false' runs: - using: node20 + using: node24 main: 'dist/index.js'