From b46195f9cd530e4ddd1a70fa6544875689d24669 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Wed, 11 Mar 2026 13:10:06 +0100 Subject: [PATCH] Update Node to 24 * There are warnings for Node 20 now, see https://github.com/ruby/setup-ruby/issues/806#issuecomment-4038240742 * Node 20 is deprecated now and EOL in April 2026. Node 24 has been available for a long time, so no runners should lack node24. See https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ * For very old runners without node24 it's still possible to force using node20 with `ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION=20`. See also the blog post above. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 733938dbe..ab758fba0 100644 --- a/action.yml +++ b/action.yml @@ -55,5 +55,5 @@ outputs: ruby-prefix: description: 'The prefix of the installed ruby' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js'