From f054aaa35dd65fa6f3101c5820977c095bb0fe4b Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Thu, 13 Oct 2022 16:35:23 -0500 Subject: [PATCH] use node 16 (#465) node12 actions are deprecated. See documentation here: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Currently, the unity builder action gives me the following 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: game-ci/unity-test-runner, game-ci/unity-builder ``` Co-authored-by: Webber Takken --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 1e0e6a95..6658a9a8 100644 --- a/action.yml +++ b/action.yml @@ -175,5 +175,5 @@ branding: icon: 'box' color: 'gray-dark' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js'