From f4a1c464f25348dac8f9a555e573b916f3098110 Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Mon, 1 Jun 2026 20:57:40 +0100 Subject: [PATCH] ci: bump a2ml-validate-action to 6bff6ec (s-expression form support) Validator PR #26 (merged 2026-06-01) taught the action to recognise both TOML `name = "x"` AND s-expression `(name "x")` identity and version forms. The pre-fix SHA only matched TOML, so any `.a2ml` file using s-expression dialect (idiomatic in campaign reports and audit registries) failed Dogfood Gate with "Missing required identity field" even when the field was structurally present. Real-world bite: hyperpolymath/panic-attack#94 hit this on docs/campaigns/2026-05-26.a2ml on 2026-06-01. This bump is purely a workflow SHA refresh; no behavioural change for repos that don't carry s-expression manifests. --- .github/workflows/dogfood-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dogfood-gate.yml b/.github/workflows/dogfood-gate.yml index 74763e8..e0d6eb8 100644 --- a/.github/workflows/dogfood-gate.yml +++ b/.github/workflows/dogfood-gate.yml @@ -38,7 +38,7 @@ jobs: - name: Validate A2ML manifests if: steps.detect.outputs.count > 0 - uses: hyperpolymath/a2ml-validate-action@59145c7d1039fa3059b3ecacdb50ee23d7505898 # main + uses: hyperpolymath/a2ml-validate-action@6bff6ec134fc977e86d25166a5c522ddea5c1e78 # main with: path: '.' strict: 'false'