From d1416e74a9a643cbf6c711905741e73e3a0c26b8 Mon Sep 17 00:00:00 2001 From: Alberto Carbognin <85107302+doregex@users.noreply.github.com> Date: Sun, 13 Nov 2022 05:53:07 +0100 Subject: [PATCH] update(node): node 12 actions are deprecated (#7) We should update to node 16 to avoid the 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: szenius/set-timezone" --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4e8791f..e6e1584 100644 --- a/action.yml +++ b/action.yml @@ -18,5 +18,5 @@ inputs: required: false default: "UTC" runs: - using: "node12" + using: "node16" main: "dist/index.js"