From d7d57b59973e1156e29bda58d8ad00e643500339 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Mon, 21 Sep 2026 11:50:55 +0100 Subject: [PATCH] fix(ci): repair the unbalanced jq filter in the Hypatia findings validator --- .github/workflows/hypatia-scan-reusable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hypatia-scan-reusable.yml b/.github/workflows/hypatia-scan-reusable.yml index 90c1ae6df..1ac1dbbeb 100644 --- a/.github/workflows/hypatia-scan-reusable.yml +++ b/.github/workflows/hypatia-scan-reusable.yml @@ -130,7 +130,7 @@ jobs: if [ ! -s hypatia-findings.json ] || ! jq -e ' type == "array" and length > 0 and all(.[]; type == "object" and (.severity as $s | - ["critical", "high", "medium", "warn", "low", "info", "informational"] | index($s) != null))) + ["critical", "high", "medium", "warn", "low", "info", "informational"] | index($s) != null)) ' hypatia-findings.json >/dev/null; then echo "::error::Hypatia did not produce a valid findings array" exit 2