From bfd83439442c2f0cfb844a8e61d94ee4d491e54c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20A=C3=9Fhauer?= Date: Sat, 29 Oct 2022 16:01:16 +0200 Subject: [PATCH] upgrade to Node 16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Running actions on Node 12 has been deprecated [1] and causes a warning when running workflows with this action. [1] https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Signed-off-by: Matthias Aßhauer --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2bdb7e2..13e650b 100644 --- a/action.yml +++ b/action.yml @@ -32,5 +32,5 @@ outputs: issues: description: "issue IDs, comma separated" runs: - using: "node12" + using: "node16" main: "dist/index.js"