Since ZAP vulnerability scans can generate a lot of issues, it might be nice to be able to e.g. ignore any LOW or INFO vulnerabilities. (so that issues are not created)
e.g.
jobs:
zap_scan_public:
runs-on: ubuntu-latest
name: Scan public website
steps:
- name: ZAP Scan
uses: zaproxy/action-full-scan@v0.1.0
with:
issue_title: Vulnerability Scan Results
token: ${{ secrets.GITHUB_TOKEN }}
docker_name: owasp/zap2docker-weekly
target: https://ironpeak.be/
rules_file_name: .github/zap.ignore
cmd_options: '-a -s MEDIUM'
Since ZAP vulnerability scans can generate a lot of issues, it might be nice to be able to e.g. ignore any LOW or INFO vulnerabilities. (so that issues are not created)
e.g.