From 419614fa22b61390dbd4baecd3f13882b01fc603 Mon Sep 17 00:00:00 2001 From: Ronen Slavin Date: Fri, 8 May 2026 10:24:30 +0300 Subject: [PATCH] chore: bump action runtime to node24 Backport of #115 to the v0 line. GitHub forces Node 24 on runners June 2 and removes Node 20 support September 16, after which the action would fail to start on Node-20-pinned runtimes. 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 8b15f62..44880f1 100644 --- a/action.yml +++ b/action.yml @@ -81,6 +81,6 @@ inputs: default: '' 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'