From cbe95a5765881176c2347a58a122a1e0dbbfa690 Mon Sep 17 00:00:00 2001 From: Jasperhino Date: Thu, 23 Apr 2026 13:08:11 +0200 Subject: [PATCH] Bump action runtime from node20 to node24 --- action.yml | 2 +- restore/action.yml | 2 +- save/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index f247469..efa9fcc 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' runs: - using: 'node20' + using: 'node24' main: 'dist/restore/index.js' post: 'dist/save/index.js' post-if: "success()" diff --git a/restore/action.yml b/restore/action.yml index 136976a..6f95580 100644 --- a/restore/action.yml +++ b/restore/action.yml @@ -38,7 +38,7 @@ outputs: cache-matched-key: description: 'Key of the cache that was restored, it could either be the primary key on cache-hit or a partial/complete match of one of the restore keys' runs: - using: 'node20' + using: 'node24' main: '../dist/restore-only/index.js' branding: icon: 'archive' diff --git a/save/action.yml b/save/action.yml index ca8be22..b393e69 100644 --- a/save/action.yml +++ b/save/action.yml @@ -23,7 +23,7 @@ inputs: default: 'github-cache' required: false runs: - using: 'node20' + using: 'node24' main: '../dist/save-only/index.js' branding: icon: 'archive'