generated from DTS-STN/next-template
-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (31 loc) · 964 Bytes
/
dast.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Dynamic Application Security Tests
on:
push:
branches: [main, staging, release*]
jobs:
zap-proxy-scan:
name: ZAP Proxy Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: npm ci
env:
CI: true
- name: Docker Build
run: docker build --build-arg AEM_GRAPHQL_ENDPOINT=${{secrets.AEM_GRAPHQL_ENDPOINT}} -t secure-client-hub .
env:
CI: true
AEM_GRAPHQL_ENDPOINT: ${{secrets.AEM_GRAPHQL_ENDPOINT}}
- name: Docker run
run: docker run -d -p 3000:3000 secure-client-hub
env:
CI: true
AEM_GRAPHQL_ENDPOINT: ${{secrets.AEM_GRAPHQL_ENDPOINT}}
- name: OWASP ZAP FULL Scan
uses: zaproxy/[email protected]
with:
target: "http://localhost:3000"
fail_action: "false"
token: ${{ secrets.GITHUB_TOKEN }}