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'