mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-12 14:08:28 +02:00
Add OWASP scanning
This commit is contained in:
parent
9f861b3c11
commit
690659c9ba
3 changed files with 148 additions and 2 deletions
19
.github/workflows/security-check.yaml
vendored
19
.github/workflows/security-check.yaml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Django Security Check
|
||||
name: Security Checks
|
||||
|
||||
on:
|
||||
push:
|
||||
|
@ -34,3 +34,20 @@ jobs:
|
|||
with:
|
||||
name: security-check-output
|
||||
path: output.txt
|
||||
|
||||
owasp-scan:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out
|
||||
uses: actions/checkout@v3
|
||||
- name: OWASP scan
|
||||
run: docker compose run owasp
|
||||
working-directory: ./src
|
||||
- name: Upload output
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: owasp-scan-output
|
||||
path: ./src/zap_report.html
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue