We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit ae81174Copy full SHA for ae81174
1 file changed
owzap-integrations
@@ -0,0 +1,25 @@
1
+name: OWASP ZAP Baseline Scan
2
+
3
+on:
4
+ push:
5
+ branches: [ "develop", "master" ]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '30 6 * * 4'
10
11
+jobs:
12
+ zap_scan:
13
+ runs-on: ubuntu-latest
14
+ name: Perform ZAP Baseline Scan
15
+ steps:
16
+ - name: Checkout Code
17
+ uses: actions/checkout@v4
18
19
+ - name: OWASP ZAP Baseline Scan
20
+ uses: zaproxy/action-baseline@v0.12.0
21
+ with:
22
+ target: 'https://your-application-url.com'
23
+ token: ${{ secrets.GITHUB_TOKEN }}
24
+ rules_file_name: '.zap/rules.tsv'
25
+ cmd_options: '-a'
0 commit comments