From 192769ea69caa05cd4ba77daab90a57474a02312 Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 4 Feb 2026 13:01:18 +0000 Subject: [PATCH] fix(ci): trim CodeQL matrix to valid languages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove javascript-typescript and actions from CodeQL matrix — this repo contains only Go and Python. Invalid languages blocked SARIF upload and prevented merge. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1bc44a00..1381b031 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - language: [go, javascript-typescript, python, actions] + language: [go, python] steps: - name: Checkout