Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,7 @@ jobs:
- name: bandit
run: uv run bandit -c pyproject.toml -r benchmarks scripts -ll
- name: pip-audit
run: uv run pip-audit --skip-editable --ignore-vuln GHSA-r7w7-9xr2-qq2r
# CVE-2026-47214 (docling 2.91.0, fixed in 2.94.0) is ignored because docling is
# pinned to <2.92 until langchain-docling supports the newer "slim" docling layout.
# See https://github.com/cuga-project/cuga-eval/issues/45.
run: uv run pip-audit --skip-editable --ignore-vuln GHSA-r7w7-9xr2-qq2r --ignore-vuln CVE-2026-47214
Comment thread
coderabbitai[bot] marked this conversation as resolved.
4 changes: 3 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ test-stability:
# --skip-editable: cuga and appworld are editable path installs not on PyPI.
# --ignore-vuln GHSA-r7w7-9xr2-qq2r: langchain-openai is pinned to 1.1.10 by
# cuga-agent's transitive constraints. Track the upstream bump separately.
# --ignore-vuln CVE-2026-47214: docling is pinned to <2.92 until langchain-docling
# supports the newer "slim" docling layout. See issue #45.
security:
uv run bandit -c pyproject.toml -r benchmarks scripts -ll
uv run pip-audit --skip-editable --ignore-vuln GHSA-r7w7-9xr2-qq2r
uv run pip-audit --skip-editable --ignore-vuln GHSA-r7w7-9xr2-qq2r --ignore-vuln CVE-2026-47214

# Composite gate matching what CI runs.
ci: lint test-regression security
Loading