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.
This commit is contained in:
Winni Neessen 2024-03-21 16:10:38 +01:00
parent 38661b29ae
commit df58859a4f
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -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