From 4734b1a57b8b82fa2e5f89658726b3d419638b3c Mon Sep 17 00:00:00 2001 From: Mathias LANG Date: Sat, 15 Oct 2022 09:42:27 +0900 Subject: [PATCH] Update the action to node 16 (#60) Node 12 is deprecated and gives off a warning: 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 3799f17..a5caaf7 100644 --- a/action.yml +++ b/action.yml @@ -15,7 +15,7 @@ inputs: vsversion: description: The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019"). runs: - using: node12 + using: node16 main: index.js branding: icon: terminal