From 02aadfee7f572f67453450365b688df2c3f95730 Mon Sep 17 00:00:00 2001 From: ccoVeille <3875889+ccoVeille@users.noreply.github.com> Date: Wed, 7 Jan 2026 16:26:13 +0100 Subject: [PATCH] Fix Node.js version in action.yml (#691) It looks like the Node.js version specified in action.yml was left behind when we upgraded the project to Node.js 24. This commit updates action.yml to reflect the correct Node.js version. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0fdb998..36f8204 100644 --- a/action.yml +++ b/action.yml @@ -25,7 +25,7 @@ outputs: cache-hit: description: 'A boolean value to indicate if a cache was hit' runs: - using: 'node20' + using: 'node24' main: 'dist/setup/index.js' post: 'dist/cache-save/index.js' post-if: success()