From e83874834305fe9a4a2997156cb26c5de65a8555 Mon Sep 17 00:00:00 2001 From: James McGonegal <11491046+jimmymcpeter@users.noreply.github.com> Date: Wed, 11 Mar 2026 11:15:28 -0400 Subject: [PATCH] use node24 (#243) Node v20 is going to be EOL in April 2026 -- https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ Resolves #242 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8f32cc8..fa8f454 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,7 @@ inputs: description: 'git command' required: false runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' post: 'dist/cleanup.js' post-if: 'always()'