We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 444b78b commit 28df803Copy full SHA for 28df803
.github/workflows/security.yaml
@@ -25,10 +25,10 @@ jobs:
25
- name: Install Bandit
26
run: pip install bandit[toml]
27
- name: Run Bandit
28
- run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -f json -o bandit-results.json
+ run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -s B105 -f json -o bandit-results.json
29
- name: Display results
30
if: always()
31
- run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -f screen
+ run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -s B105 -f screen
32
- name: Upload results
33
34
uses: actions/upload-artifact@v4
0 commit comments