Skip to content

Commit

Permalink
Silence B101 error thrown by Bandit.
Browse files Browse the repository at this point in the history
  • Loading branch information
bshastry committed Oct 9, 2023
1 parent a323caa commit 1805e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bandit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Run Bandit
id: bandit
run: bandit -r . --format json -o bandit_results.json
run: bandit -r . --format json -o bandit_results.json -s B101

- name: Save Bandit Results as Artifact
uses: actions/upload-artifact@v2
with:
name: bandit-results
path: bandit_results.json
path: bandit_results.json

0 comments on commit 1805e72

Please sign in to comment.