From 1958b9da6b5bb863e32005d704de80687df350a6 Mon Sep 17 00:00:00 2001 From: takotakot Date: Tue, 5 Mar 2024 11:40:42 +0900 Subject: [PATCH 1/2] style: Remove spaces --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 2ccecc67..a887b79e 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'action-php-codesniffer' description: 'Runs PHP_CodeSniffer on files changed in current PR or even only on lines by author of PR' author: 'Konstantin Vyatkin ' inputs: - files: + files: description: 'files to check' default: '**.php' required: false @@ -20,11 +20,11 @@ inputs: fail_on_warnings: description: 'Whether action should fail on warnings or not, default to true (fails)' required: false - + runs: using: 'node12' main: 'dist/index.js' - + branding: icon: 'wind' color: 'green' From 8d47432140594eb18628ffcaf1f2fd483fbdaf85 Mon Sep 17 00:00:00 2001 From: takotakot Date: Tue, 5 Mar 2024 11:41:19 +0900 Subject: [PATCH 2/2] feat: Update node version to 20 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a887b79e..a9346861 100644 --- a/action.yml +++ b/action.yml @@ -22,7 +22,7 @@ inputs: required: false runs: - using: 'node12' + using: 'node20' main: 'dist/index.js' branding: