From e6142eade5867f88f35849a1fe467fab2dd8cac7 Mon Sep 17 00:00:00 2001 From: Allan Cascante Date: Mon, 18 May 2026 14:36:43 -0600 Subject: [PATCH] fix: upgrade action runtime from node20 to node24 Resolves #274 - Node.js 20 actions are deprecated and will be forced to run with Node.js 24 starting June 2nd, 2026. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b152bf9c..71f06e60 100644 --- a/action.yml +++ b/action.yml @@ -24,5 +24,5 @@ inputs: required: false default: false runs: - using: 'node20' + using: 'node24' main: 'lib/main.js'