From cc94a0fba93827949634372680f7c684ff52d464 Mon Sep 17 00:00:00 2001 From: Christos Kontas <xakon@yahoo.com> Date: Fri, 21 Oct 2022 15:26:10 +0200 Subject: [PATCH] Update action to use Node.js 16 It seems that the Node.js 12 support has been deprecated, making at the moment Github Actions to emit some warnings about such an update. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index baf2dfe..c90f7a8 100644 --- a/action.yml +++ b/action.yml @@ -40,5 +40,5 @@ outputs: description: Installed rustup version runs: - using: 'node12' + using: 'node16' main: 'dist/index.js'