added report to scan action #10
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: CI | |
on: | |
push: | |
branches: | |
- feature/implement-owasp-zap-baseline-scan-github-actions | |
jobs: | |
zap_scan: | |
runs-on: ubuntu-latest | |
name: OWASP ZAP Baseline Scan of OWASP Juice Shop | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run OWASP ZAP Baseline Scan | |
uses: zaproxy/[email protected] | |
with: | |
target: "https://juice-shop.herokuapp.com/#" | |
artifact_name: "zap_report.html" |