Added pip-audit CI workflow for dependency vulnerability scanning.
CI / Formatting (push) Successful in 12s
CI / Linting (push) Successful in 14s
CI / Tests (push) Successful in 24s
CI / Type Checking (push) Successful in 26s

This commit is contained in:
2026-02-19 10:29:05 -05:00
parent bc811cbc66
commit 0f70a0c602
+32
View File
@@ -0,0 +1,32 @@
name: Dependency Audit
on:
schedule:
- cron: "0 0 * * 1"
push:
branches: [master]
paths: [uv.lock]
pull_request:
paths: [uv.lock]
jobs:
audit:
name: Dependency Audit
runs-on: logaldeveloper-archlinux
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Cache uv packages
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: ~/.cache/uv
key: uv-${{ hashFiles('uv.lock') }}
- name: Install dependencies
run: uv sync
- name: Audit dependencies with pip-audit
run: uv run pip-audit --skip-editable