We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 907441b commit 4e3dfd5Copy full SHA for 4e3dfd5
1 file changed
.github/workflows/dast.yml
@@ -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