From 53e415c2bfbb3c73337e5ec108fffa7036b0e57e Mon Sep 17 00:00:00 2001 From: Eric Crosson Date: Thu, 2 Apr 2026 12:47:51 +0800 Subject: [PATCH] fix: bump action runtime from node22 to node24 node22 is not a valid GitHub Actions runtime. Valid options are node12, node16, node20, and node24. Ticket: CTX-145 Co-Authored-By: Claude Opus 4.6 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 7577bbd..0e021bc 100644 --- a/action.yml +++ b/action.yml @@ -21,5 +21,5 @@ inputs: default: false runs: - using: node22 + using: node24 main: dist/index.js