From df58859a4f0552241bd28148ae3533f534f44c69 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 21 Mar 2024 16:10:38 +0100 Subject: [PATCH] Update language matrix in codeql workflow The language matrix in the .github/workflows/codeql.yml file has been updated to only include 'go'. This change removes the 'javascript-typescript' option to focus solely on Go code analysis and enhance the efficiency of the workflow process. --- .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 2999999..53abc7f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -47,7 +47,7 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'go', 'javascript-typescript' ] + language: [ 'go' ] # CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] # Use only 'java-kotlin' to analyze code written in Java, Kotlin or both # Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both