Edit workflow to run pip-audit against a poetry export file
Some checks failed
Lint & Security / precommit-and-security (pull_request) Failing after 1m11s

This commit is contained in:
2025-12-21 09:54:08 +00:00
parent e8f63386bb
commit 5353310e15

View File

@@ -22,8 +22,11 @@ jobs:
- name: Run pre-commit hooks
run: pre-commit run --all-files --color always
- name: Install pip-audit
run: pip install pip-audit
- name: Audit dependencies
run: |
pip install poetry pip-audit
poetry export -f requirements.txt --without-hashes \
| pip-audit -r /dev/stdin
- name: Run pip-audit
run: pip-audit