Bump brace-expansion from 1.1.11 to 1.1.12 #40
Workflow file for this run
This file contains hidden or 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: | |
| - main | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| workflow_dispatch: | |
| jobs: | |
| check-run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - run: sudo apt-get update && sudo apt-get install -y nginx && sudo systemctl start nginx | |
| - name: ZAP Scan | |
| uses: ./ | |
| id: action-api-scan | |
| with: | |
| target: 'http://localhost' | |
| allow_issue_writing: false |