From d8b9f7539837ec5e2025aa54541fe88a061ad89e Mon Sep 17 00:00:00 2001 From: Chisel <78024337+houseful-chisel@users.noreply.github.com> Date: Mon, 12 Feb 2024 12:50:54 +0000 Subject: [PATCH] chore: update action to use node20 (#240) #### What this PR does / why we need it: Action fails to run since node16 deprecation #### Which issue(s) does this PR fixes?: Fixes https://github.com/fuxingloh/multi-labeler/issues/239 #### Additional comments?: I'm testing this change now. Co-authored-by: Chisel --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 04754bd..903fe62 100644 --- a/action.yml +++ b/action.yml @@ -20,5 +20,5 @@ inputs: default: ${{ github.token }} runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'