try bandit artifact

This commit is contained in:
stvnrlly
2023-07-11 21:31:14 -04:00
parent f75b720a27
commit 6e3b6901be

View File

@@ -92,7 +92,12 @@ jobs:
- name: Install bandit
run: pip install bandit
- name: Run scan
run: bandit -r app/ --confidence-level medium
run: bandit -r app/ -f txt -o /tmp/bandit-output.txt --confidence-level medium
- name: Upload bandit artifact
uses: action/upload-artifact@v3
with:
name: bandit-report
path: /tmp/bandit-output.txt
dynamic-scan:
runs-on: ubuntu-latest