From 8315e9dcd45d877a46e21fdcba5411cd16ebbcaf Mon Sep 17 00:00:00 2001 From: Zixian Cai <2891235+caizixian@users.noreply.github.com> Date: Sat, 8 Oct 2022 16:26:54 +1100 Subject: [PATCH] Update the action to run on Node 16 Node 12 is deprecated per https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- 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'