From 97971a550fa2a0941403b9f8c0a9ce3319b089df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Wed, 27 Mar 2024 23:18:19 +0100 Subject: [PATCH] Bump Node runtime version to 20 GitHub intends for every GitHub Action to migrate to Node 20 by Spring 2024, and we are on Spring 2024. To move forward and do not cause inconveniences to users (due to the deprecation warning that this action shows when used on workflows) and GitHub (so that they don't have reasons to delay the upgrade), let's update this action to use Node 20. As far as I can see, this action does not need any code changes to work under a Node 20 runtime. Fixes #86. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 36388c2..d042ea5 100644 --- a/action.yml +++ b/action.yml @@ -50,5 +50,5 @@ inputs: required: false default: latest runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'