From 4c38124b5d321c49fd1710972957f2e5c1819a90 Mon Sep 17 00:00:00 2001 From: Carim Fadil Date: Wed, 4 Jan 2023 15:30:17 -0300 Subject: [PATCH] Update to use node16 Avoid Github Actions 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: airfordable/ecs-deploy-task-definition-to-scheduled-task@v2.0.0 ``` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 77cd752..27bc090 100644 --- a/action.yml +++ b/action.yml @@ -19,5 +19,5 @@ outputs: task-definition-arn: description: The ARN of the registered ECS task definition runs: - using: node12 + using: node16 main: dist/index.js