fix(ci): replace safety scan with pip-audit to fix CI EOF error

Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/986fc7f4-e884-4169-bd81-eca034e926e2

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-28 23:04:23 +00:00
parent 61d525cb82
commit 8152635238
3 changed files with 9 additions and 2 deletions
+2 -2
View File
@@ -150,7 +150,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit safety
pip install bandit pip-audit
pip install -r backend/requirements.txt
- name: Run Bandit security scan
@@ -158,7 +158,7 @@ jobs:
continue-on-error: true
- name: Check dependencies for known vulnerabilities
run: safety scan --json
run: pip-audit -r backend/requirements.txt
continue-on-error: true
# ── Phase 4: Build ─────────────────────────────────────────────────────