From 13c79b611bd2cf11c9ee7a84e36315a1f1e42a5f Mon Sep 17 00:00:00 2001 From: Em Zhan Date: Mon, 10 Oct 2022 12:47:08 -0500 Subject: [PATCH] Run action on Node 16 instead Node 12 See https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 31bbf81..aec3c99 100644 --- a/action.yml +++ b/action.yml @@ -14,5 +14,5 @@ outputs: is-canary: description: "If the installed Deno version was a canary version." runs: - using: "node12" + using: "node16" main: "main.js"