From f8a73b9fc7373c9b428ffae6cdb0b0b01ef6a63e Mon Sep 17 00:00:00 2001 From: Greg Teixeira Date: Thu, 26 Jan 2023 23:17:23 -0300 Subject: [PATCH] chore: fix not using node 16 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 8fb95de8..dc5ee830 100644 --- a/action.yml +++ b/action.yml @@ -31,5 +31,5 @@ inputs: description: Title to add to the comment required: false runs: - using: node16 - main: dist/main.js + using: 'node16' + main: 'dist/main.js'