From 8be6b654dc02fea4d4c2e9a288a8078794368a94 Mon Sep 17 00:00:00 2001 From: Misha Kaletsky <15040698+mmkal@users.noreply.github.com> Date: Mon, 10 Oct 2022 17:51:56 -0400 Subject: [PATCH] bump to node 16 to avoid this warning: ``` Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: hmarr/debug-action ``` Should probably be a new major version. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 62330f1..b083cbe 100644 --- a/action.yml +++ b/action.yml @@ -4,5 +4,5 @@ branding: icon: 'code' color: 'yellow' runs: - using: 'node12' + using: 'node16' main: 'index.js'