From c6c361e5e73e340d027cc2ceec7abd5d36aa3642 Mon Sep 17 00:00:00 2001 From: Al Sutton Date: Wed, 11 Mar 2026 12:19:26 +0000 Subject: [PATCH] Update Node version to address deprecation warning. GitHub have deprecated NodeJS v20 as an environment for actions, and will be using NodeJS v24 for all actions from 2nd June 2026[1]. Currently GitHub runners print a deprecation warning in their logs showing all actions that use the node20 environment, which includes setup-bazel, so I'm updating the action to use node24, and so remove it from the deprecation warning. [1] https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 852aa31..837a9f0 100644 --- a/action.yml +++ b/action.yml @@ -51,7 +51,7 @@ inputs: default: ${{ github.token }} runs: - using: node20 + using: node24 main: dist/main/index.js post: dist/post/index.js post-if: "!cancelled()"