Skip to content

Updated Whats New Page #74

Updated Whats New Page

Updated Whats New Page #74

Workflow file for this run

name: Security Audit
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pip-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install pip-audit
run: pip install pip-audit
- name: Audit production dependencies
run: pip-audit -r requirements.txt --strict
bandit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install bandit
run: pip install bandit
- name: Run bandit security scan
run: bandit -r app/ -ll -f screen