Every Sunday at 02:00 #161
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: Every Sunday at 02:00 | |
on: | |
schedule: | |
# Scheduled workflows run on the latest commit on the default or base branch. | |
- cron: "0 2 * * 0" | |
jobs: | |
zap_scan_ocp4: | |
runs-on: ubuntu-22.04 | |
name: Scan the web application in OCP4 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: ZAP Scan | |
# f.y.i.: ZAP Scan must be able to log an issue or it will fail. | |
uses: zaproxy/[email protected] | |
with: | |
target: "https://wps-prod.apps.silver.devops.gov.bc.ca/" | |
rules_file_name: ".zap/rules.tsv" |