bank.f5labs.dev - ZAP Full Scan #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "bank.f5labs.dev - ZAP Full Scan" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "15 00 * * 6" | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
zap-baseline: | |
name: "ZAP Full Scan" | |
runs-on: ubuntu-latest | |
permissions: | |
# Needed to write to Issues. | |
issues: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- name: ZAP Scan | |
uses: zaproxy/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
docker_name: "ghcr.io/zaproxy/zaproxy:stable" | |
target: "https://bank.f5labs.dev" | |
issue_title: "bank.f5labs.dev - OWASP ZAP Full Scan" | |
fail_action: "true" | |
cmd_options: "-I" |