From c30f8cec46f9f1b0db08d19bdb8dc47d9484d29a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 17 Sep 2025 23:30:37 +0530 Subject: [PATCH] ... --- .github/workflows/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index 873e67a45..c05d1573b 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -223,7 +223,7 @@ def check_dependencies() -> None: os.makedirs(dest, exist_ok=True) install_bundle(dest, os.path.basename(dest)) cmdline = [grype, '--by-cve', '--config', gc, '--fail-on', 'medium', '--only-fixed'] - if (cp := subprocess.run(cmdline + [SW])).returncode != 0: + if (cp := subprocess.run(cmdline + ['dir:' + SW])).returncode != 0: raise SystemExit(cp.returncode) # Now test against the SBOM import runpy