From 871259f9e21f309e6a9b472774b713949ee032e3 Mon Sep 17 00:00:00 2001 From: Boris Staal Date: Wed, 31 Jan 2024 08:11:32 -0600 Subject: [PATCH] Switch to node20 context --- 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 a701f70..9ad52c9 100644 --- a/action.yml +++ b/action.yml @@ -42,7 +42,7 @@ outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' runs: - using: 'node16' + using: 'node20' main: 'dist/restore/index.js' post: 'dist/save/index.js' post-if: success() diff --git a/restore/action.yml b/restore/action.yml index 8d10d01..4fb8cce 100644 --- a/restore/action.yml +++ b/restore/action.yml @@ -43,7 +43,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: 'node16' + using: 'node20' main: '../dist/restore-only/index.js' branding: icon: 'archive' diff --git a/save/action.yml b/save/action.yml index 209fdce..ee40042 100644 --- a/save/action.yml +++ b/save/action.yml @@ -28,7 +28,7 @@ inputs: description: 'An AWS region where the bucket is located' required: true runs: - using: 'node16' + using: 'node20' main: '../dist/save-only/index.js' branding: icon: 'archive'