Daily Scans #188
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: Daily Scans | |
on: | |
schedule: | |
- cron: 0 2 * * * | |
workflow_dispatch: null | |
jobs: | |
owasp-zap-full-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Run OWASP Zap full scan | |
uses: zaproxy/[email protected] | |
id: scan | |
with: | |
target: https://hello-gradlew.skylounge.io | |
rules_file_name: skylounge/owasp/rules.cfg | |
issue_title: "Daily Scans - OWASP Full Scan - ${{ github.run_number }}" | |
token: "${{ github.token }}" | |
fail_action: false |