Add Bandit badge #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bandit Security Scan | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
security_scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install bandit | |
- name: Run Bandit | |
id: bandit | |
run: bandit -r . --format json -o bandit_results.json | |
- name: Determine Badge URL | |
id: determine_badge | |
run: | | |
python3 - <<EOF | |
import json | |
with open('bandit_results.json') as f: | |
results = json.load(f) | |
if results['metrics']['_totals']['issue_severity']['HIGH'] > 0 or results['metrics']['_totals']['issue_severity']['MEDIUM'] > 0 or results['metrics']['_totals']['issue_severity']['LOW'] > 0: | |
badge_url = 'https://img.shields.io/badge/Bandit-Issues%20Detected-red?label=high%3A{}%20medium%3A{}%20low%3A{}'.format( | |
results['metrics']['_totals']['issue_severity']['HIGH'], | |
results['metrics']['_totals']['issue_severity']['MEDIUM'], | |
results['metrics']['_totals']['issue_severity']['LOW'] | |
) | |
else: | |
badge_url = 'https://img.shields.io/badge/Bandit-No%20Issues%20Found-brightgreen' | |
print(badge_url) | |
EOF | |
- name: Update README with Badge | |
run: | | |
badge_url=$(echo "${{ steps.determine_badge.outputs.stdout }}") | |
sed -i "s|!\[Bandit Workflow\]\([^)]+\)|![Bandit Workflow](${badge_url})|" README.md |