Skip to content

Commit 28df803

Browse files
committed
Override false positives
1 parent 444b78b commit 28df803

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/security.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
- name: Install Bandit
2626
run: pip install bandit[toml]
2727
- name: Run Bandit
28-
run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -f json -o bandit-results.json
28+
run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -s B105 -f json -o bandit-results.json
2929
- name: Display results
3030
if: always()
31-
run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -f screen
31+
run: bandit -r dj_rest_auth/ --exclude dj_rest_auth/tests -s B105 -f screen
3232
- name: Upload results
3333
if: always()
3434
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)