From d4cf0aa6bc7e035a4732b49148bef02daae10263 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 11 Dec 2025 20:49:33 +0200 Subject: [PATCH] fix(ci): separate CodeQL languages in matrix Previously 'actions,javascript' was treated as a single language. Now correctly split into separate 'actions' and 'javascript' entries. --- .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 8449c36..3e782f1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - language: ["actions,javascript", "cpp"] # Add languages used in your actions + language: ["actions", "javascript"] # Add languages used in your actions steps: - name: Checkout repository