From c04eb00bc73a5984fde08096aa44f1df849c9846 Mon Sep 17 00:00:00 2001 From: Victor Sollerhed Date: Thu, 4 Jul 2024 10:45:12 +0200 Subject: [PATCH] Run using `node20` (not `node16`) To avoid the warning: `The following actions uses Node.js version which is deprecated and will be forced to run on node20: `pass-culture-github-actions/gcs-cache@v1.0.0` As per: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ Where they say: >Following on from our warning in workflows using Node16 we will start enforcing the use of Node20 rather than Node16 on the 3rd of June. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2f2392e..bc5dd50 100644 --- a/action.yml +++ b/action.yml @@ -30,7 +30,7 @@ outputs: description: Whether the cache was successfuly restored runs: - using: 'node16' + using: 'node20' main: 'dist/main/index.js' post: 'dist/post/index.js' post-if: 'success()'