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'