fix applicant sync date range and add diagnostics #538
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: ZAP Scan | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - security | |
| permissions: | |
| contents: read | |
| issues: write | |
| actions: read | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| concurrency: ci-${github.ref}-sec | |
| environment: | |
| name: dev | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup node v22.22.2 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.22.2 | |
| - name: ZAP Scan | |
| uses: zaproxy/action-full-scan@v0.12.0 | |
| with: | |
| target: https://d309kopm8ags5f.cloudfront.net | |
| cmd_options: '-I' | |
| rules_file_name: '.zap/rules.tsv' |