Skip to content

Commit 4e3dfd5

Browse files
committed
feat: Implemet SecOps with DAST
1 parent 907441b commit 4e3dfd5

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/dast.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "SecOps: DAST Dynamic Scan"
2+
3+
on:
4+
push:
5+
branches: [ main, master ]
6+
# Se ejecuta automáticamente todos los lunes para asegurar que el servidor sigue seguro
7+
schedule:
8+
- cron: '0 0 * * 1'
9+
10+
jobs:
11+
zap_scan:
12+
runs-on: ubuntu-latest
13+
name: Scan Live API (Render)
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: ZAP API Scan
19+
uses: zaproxy/action-api-scan@v0.7.0
20+
with:
21+
target: 'https://auth-mailer-api.onrender.com'
22+
format: openapi

0 commit comments

Comments
 (0)