This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Zap-Scan #196
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
--- | |
# This workflow will run the OWASP ZAP web application security scanner | |
name: Zap-Scan | |
on: | |
# Run every Sunday at 3AM | |
schedule: | |
- cron: '0 3 * * SUN' | |
workflow_dispatch: | |
# Run every time the "Deploy" action completes (see deploy.yml) | |
workflow_run: | |
workflows: ["Deploy"] | |
branches: [main] | |
types: [completed] | |
jobs: | |
zap_scan: | |
runs-on: ubuntu-latest | |
name: OWASP ZAP Full Scan | |
steps: | |
- name: ZAP Scan | |
uses: zaproxy/action-full-scan@v0.10.0 | |
with: | |
target: "https://all-sorns.app.cloud.gov" |