Skip to content

Commit ae81174

Browse files
authored
Create owzap-integrations
adding owzap integrations
0 parents  commit ae81174

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

owzap-integrations

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: OWASP ZAP Baseline Scan
2+
3+
on:
4+
push:
5+
branches: [ "develop", "master" ]
6+
pull_request:
7+
branches: [ "develop", "master" ]
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

Comments
 (0)