Skip to content

Commit

Permalink
Add bandit for security scanning too
Browse files Browse the repository at this point in the history
  • Loading branch information
obscurerichard committed Dec 15, 2024
1 parent 0ad184d commit 0cf279e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Security

on: pull_request

jobs:

# Thanks https://black.readthedocs.io/en/stable/integrations/github_actions.html
bandit:
name: Bandit
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: bandit
uses: mdegis/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
level: medium
confidence: medium

0 comments on commit 0cf279e

Please sign in to comment.