From 8adc03fc9203eeb3a32ae41f516e56ed3e306da1 Mon Sep 17 00:00:00 2001 From: chetan-vaidya3d <104533763+chetan-vaidya3d@users.noreply.github.com> Date: Fri, 25 Nov 2022 12:20:54 +0530 Subject: [PATCH] Added node version 16 in action.yml at line no.35 (#264) This change was done for below warning message. : 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: azure/webapps-deploy@v2 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 826cf7801..a34f783cc 100644 --- a/action.yml +++ b/action.yml @@ -32,5 +32,5 @@ branding: icon: 'webapp.svg' color: 'blue' runs: - using: 'node12' + using: 'node16' main: 'lib/main.js'