From 6ba55154ed555a6ffbdfa250a0cc80a5aff99c2a Mon Sep 17 00:00:00 2001 From: Valtteri Lehtinen Date: Fri, 12 Apr 2024 13:00:39 +0300 Subject: [PATCH] Fix workflow --- action.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 5b597f9..050527d 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'OpalOPC Scan Action' description: 'Runs a OpalOPC scan against a target site' author: 'Molemmat Oy' inputs: - target: + target-url: description: 'The full url (including scheme) of the server to scan' required: true license-key: @@ -15,13 +15,14 @@ inputs: runs: using: 'docker' image: 'Dockerfile' - entrypoint: 'sh -c' + entrypoint: "sh" env: OPALOPC_LICENSE_KEY: ${{ inputs.license-key }} args: + - -c - opalopc - -vv - - ${{ inputs.target }} + - ${{ inputs.target-url }} - -o ${{ inputs.output-base-filename }} branding: icon: 'activity'