diff --git a/.github/workflows/security-scan-dast.yml b/.github/workflows/security-scan-dast.yml index e858a78..fbe7ea5 100644 --- a/.github/workflows/security-scan-dast.yml +++ b/.github/workflows/security-scan-dast.yml @@ -24,7 +24,7 @@ on: type: string fail_on_warn: description: "fail the workflow on warnings (true) or only on errors (false)" - default: "false" + default: false required: false type: boolean runner: @@ -60,7 +60,7 @@ jobs: - name: zap baseline scan id: zap-scan if: ${{ inputs.scan_type == 'baseline' }} - uses: zaproxy/action-baseline@v0.14.0 + uses: zaproxy/action-baseline@v0.15.0 with: target: ${{ inputs.target_url }} rules_file_name: ${{ inputs.rules_file }} @@ -72,7 +72,7 @@ jobs: - name: zap full scan id: zap-full-scan if: ${{ inputs.scan_type == 'full' }} - uses: zaproxy/action-full-scan@v0.12.0 + uses: zaproxy/action-full-scan@v0.13.0 with: target: ${{ inputs.target_url }} rules_file_name: ${{ inputs.rules_file }}