From d34e85276a0f5e8b53b25fc4c5c7e2aee0d9ebe2 Mon Sep 17 00:00:00 2001 From: Eric Crosson Date: Thu, 2 Apr 2026 12:33:24 +0800 Subject: [PATCH] fix: upgrade action runtime from node20 to node22 GitHub is deprecating Node.js 20 for GitHub Actions, producing warning annotations in consuming workflows. Ticket: CTX-144 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 2551d19..7577bbd 100644 --- a/action.yml +++ b/action.yml @@ -21,5 +21,5 @@ inputs: default: false runs: - using: node20 + using: node22 main: dist/index.js