fix: replace safety scan with pip-audit (no login required)

safety scan requires interactive account login, breaking CI.
pip-audit provides equivalent vulnerability scanning without auth.
This commit is contained in:
Pouzor
2026-03-07 15:11:59 +01:00
parent fccbdad409
commit e5262b4b71
+2 -2
View File
@@ -32,5 +32,5 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Safety scan
run: pip install safety && safety scan -r backend/requirements.txt
- name: Pip audit
run: pip install pip-audit && pip-audit -r backend/requirements.txt