From a3d9fc903c846f83a3451af850647c2f57999327 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Thu, 3 Nov 2022 14:47:52 -0700 Subject: [PATCH] Run on node16 instead of node12 This should fix the following deprecation warning reported in Github Actions: 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: krdlab/setup-haxe --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8bd3424..88b52ed 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ inputs: required: true default: '4.2.5' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' branding: icon: 'download'