We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f263d commit 6554a60Copy full SHA for 6554a60
.github/workflows/vulnerability.yaml
@@ -33,20 +33,22 @@ jobs:
33
# Run bandit
34
bandit -r src -c pyproject.toml -o bandit_outputs.txt -f txt --skip B311
35
- name: Archive bandit outputs
36
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
37
with:
38
name: bandit_outputs
39
path: bandit_outputs.txt
40
retention-days: 2
41
+ overwrite: true
42
- name: Run safety
43
run: |
44
pip install -r requirements.txt
45
pip install safety
46
safety check --output text --continue-on-error > insecure_report.txt
47
- name: Archive safety outputs
48
49
50
name: safety_outputs
51
path: |
52
insecure_report.txt
53
54
0 commit comments