Update dastardly.yml #5
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: DevSecOps Pipeline | |
on: push | |
jobs: | |
zap_scan: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
name: zap | |
steps: | |
- name: ZAP Scan | |
uses: zaproxy/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
docker_name: 'owasp/zap2docker-stable' | |
target: 'http://juice-shop.herokuapp.com/' # Change URL or IP of your target application | |
rules_file_name: '.zap/rules.tsv' | |
cmd_options: '-a' |