Skip to content

Commit 2678bde

Browse files
Ignore momentarily CVE-2026-0994 in protobuf
This will enable running the CI and its checks. There is a fix upstream waiting to be merged and released: protocolbuffers/protobuf#25239
1 parent ab387dd commit 2678bde

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Taskfile.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ tasks:
4747
desc: Run security scanning
4848
cmds:
4949
- uv run bandit -r src/
50-
- uv run pip-audit
50+
# TODO: Remove --ignore-vuln once protobuf releases a fix for CVE-2026-0994
51+
- uv run pip-audit --ignore-vuln CVE-2026-0994
5152
- uv run bandit -r src/ -f json -o bandit-report.json || true
52-
- uv run pip-audit --format=json --output=pip-audit-report.json || true
53+
- uv run pip-audit --ignore-vuln CVE-2026-0994 --format=json --output=pip-audit-report.json || true
5354
deps:
5455
- install
5556

@@ -59,7 +60,7 @@ tasks:
5960
- uv run cyclonedx-py environment --output-format json --output-file sbom.json
6061
deps:
6162
- install
62-
63+
6364
generate-thv-models:
6465
desc: Generate Pydantic models from Toolhive's OpenAPI specification
6566
cmds:

0 commit comments

Comments
 (0)