From ba0113b2fc1639454f130c7d5ba4a75f5ed7f3bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Garn=C3=A6s?= Date: Mon, 10 Oct 2022 23:12:39 +0200 Subject: [PATCH] Bump Node version from 12 to 16 GitHub is migrating all actions from Node 12 to Node 16 and is raising warnings for actions still using Node 12. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Update the version accordingly. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4b82edf1..61aadc57 100644 --- a/action.yml +++ b/action.yml @@ -11,5 +11,5 @@ inputs: required: false runs: - using: "node12" + using: "node16" main: "dist/index.js"