From 6273874b61ebc8c71f1a61b2d98e234cf389b303 Mon Sep 17 00:00:00 2001 From: Lautaro Sosa <54781436+lautitoti@users.noreply.github.com> Date: Tue, 18 Oct 2022 22:23:24 -0300 Subject: [PATCH] Update node version to 16 As node 12 has been deprecated and Github is looking to upgrade all github actions to node 16 (more https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ ) this commit will update the node version used. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3fa5b1b..05c650f 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ outputs: upload_url: description: "The URL for uploading additional assets to the release" runs: - using: "node12" + using: "node16" main: "dist/index.js" branding: icon: "git-merge"