Skip to content

Commit

Permalink
checkoutDir is required for sarif output (#30)
Browse files Browse the repository at this point in the history
checkoutDir is required for sarif output
  • Loading branch information
SOOS-GSteen authored Aug 6, 2024
1 parent ffaaa11 commit 98fe271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ runs:
shell: bash
run: |
set +x # Turn off command echoing
args="--integrationName=Github --integrationType=Plugin "
args="--checkoutDir /zap/wrk --integrationName=Github --integrationType=Plugin "
[[ "${{ inputs.ajax_spider }}" == "true" ]] && args+="--ajaxSpider "
[ -n "${{ inputs.api_key }}" ] && args+="--apiKey=${{ inputs.api_key }} "
Expand Down Expand Up @@ -223,4 +223,4 @@ runs:
shell: bash
run: |
docker pull soosio/dast:${{ inputs.image_tag }}
eval "docker run --rm soosio/dast:${{ inputs.image_tag }} $args"
eval "docker run -v ${{ github.workspace }}:/zap/wrk/:rw --rm soosio/dast:${{ inputs.image_tag }} $args"

0 comments on commit 98fe271

Please sign in to comment.