Skip to content

Python Dependencies Audit #13

Python Dependencies Audit

Python Dependencies Audit #13

Workflow file for this run

name: Python Dependencies Audit
permissions:
contents: read
on:
push:
paths:
- requirements.txt
pull_request:
paths:
- requirements.txt
schedule:
- cron: "0 4 * * 1" # Every Monday at 4:00 UTC
workflow_dispatch:
jobs:
pip-audit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pip-audit
- name: Run pip-audit
run: pip-audit -r requirements.txt