From 0ec15112a930ad03b1727bdfb10ed91f1ed4a2c4 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sun, 13 Oct 2024 15:51:57 -0700 Subject: [PATCH 1/2] chore: changes from formatting on save --- action.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/action.yml b/action.yml index f9cd75d..8f32a9f 100644 --- a/action.yml +++ b/action.yml @@ -1,18 +1,18 @@ -name: 'gabrielbb/xvfb-action' -description: 'Run your headless tests with XVFB' +name: "gabrielbb/xvfb-action" +description: "Run your headless tests with XVFB" branding: icon: airplay color: black inputs: run: - description: 'Command to execute using xvfb' + description: "Command to execute using xvfb" required: true working-directory: - description: 'Directory to execute command on, defaults to ./' + description: "Directory to execute command on, defaults to ./" required: false options: - description: 'XServer options' + description: "XServer options" required: false runs: - using: 'node12' - main: 'index.js' + using: "node12" + main: "index.js" From 2859b7c95b2806c4bc63e5aea7d83f606b8e0686 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sun, 13 Oct 2024 15:52:21 -0700 Subject: [PATCH 2/2] fix: usage of `node12 which is deprecated` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8f32a9f..817038a 100644 --- a/action.yml +++ b/action.yml @@ -14,5 +14,5 @@ inputs: description: "XServer options" required: false runs: - using: "node12" + using: "node20" main: "index.js"