Skip to content

Commit bf239d2

Browse files
committed
chill out bandit
1 parent faa9ee3 commit bf239d2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ jobs:
159159
run: poetry install --no-interaction
160160

161161
- name: Run Bandit security linter
162-
run: poetry run bandit -r src --skip B101 -f json -o bandit-report.json || true
162+
run: poetry run bandit -r src --skip B101 --severity-level high -f json -o bandit-report.json || true
163163

164164
- name: Display Bandit results
165-
run: poetry run bandit -r src --skip B101 -f txt || true
165+
run: poetry run bandit -r src --skip B101 --severity-level high -f txt || true
166166

167167
# Final status check for branch protection
168168
ci-success:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ test-cov:
5050

5151
# Security
5252
security:
53-
poetry run bandit -r src --skip B101 -f txt
53+
poetry run bandit -r src --skip B101 --severity-level high -f txt
5454

5555
# CI - runs all checks that CI will run
5656
ci: lint test-cov security

0 commit comments

Comments
 (0)