Pass ZAP auth env vars and release v0.10.0 #46
Workflow file for this run
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: Check run | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
check-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run: sudo apt-get update && sudo apt-get install -y nginx && sudo systemctl start nginx | |
- name: ZAP Scan | |
uses: ./ | |
id: action-baseline | |
with: | |
target: 'http://localhost' | |
allow_issue_writing: false |