From efaee2e58f1d414b0736bf19fed55a90bf80bc2b Mon Sep 17 00:00:00 2001 From: J-hoplin1 Date: Sun, 28 Jan 2024 15:26:18 +0900 Subject: [PATCH] Fix: Fix Node.js using version 20 for deprecation warning --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c12f278..1b456fe 100644 --- a/action.yml +++ b/action.yml @@ -33,8 +33,8 @@ inputs: description: URL to png of discord avatar to use. Default is the GitHub monochrome mark cat logo. required: false runs: - using: 'node16' - main: 'index.js' + using: "node20" + main: "index.js" branding: color: orange icon: alert-triangle