From ec4af3b2f4a32ee6892968ed9ea1bea927911f9a Mon Sep 17 00:00:00 2001 From: ccoVeille <3875889+ccoVeille@users.noreply.github.com> Date: Sun, 7 Dec 2025 16:22:57 +0100 Subject: [PATCH] Fix Node.js version in action.yml 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()