Skip to content

pip-audit

pip-audit #191

Workflow file for this run

name: pip-audit
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
schedule:
- cron: '0 6 * * *'
jobs:
audit:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install .
pip install pip-audit
- name: Run pip-audit
run: pip-audit -r <(pip freeze)
shell: bash