From c635dcd31cfa57174ff676beee6d56bbb90da90c Mon Sep 17 00:00:00 2001 From: Brian Kungl Date: Mon, 14 Jul 2025 11:07:43 -0700 Subject: [PATCH 1/3] add to codeql matrix --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 725ef52..b3aa680 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - language: [ go, python ] + language: [ actions, go, python ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support From fd2a8f5ccee4309eaaafcf0cdd5ec53bd8efd401 Mon Sep 17 00:00:00 2001 From: Brian Kungl Date: Mon, 14 Jul 2025 11:10:10 -0700 Subject: [PATCH 2/3] Add c to codeql --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b3aa680..51f2996 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - language: [ actions, go, python ] + language: [ actions, c-cpp, go, python ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support From 87356cd1d3412fbf1db8ad9f4080a95aa48c8254 Mon Sep 17 00:00:00 2001 From: Brian Kungl Date: Mon, 14 Jul 2025 11:23:10 -0700 Subject: [PATCH 3/3] specify build modes --- .github/workflows/codeql-analysis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 51f2996..2465f89 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,15 @@ jobs: strategy: fail-fast: false matrix: - language: [ actions, c-cpp, go, python ] + include: + - language: actions + build-mode: none + - language: c-cpp + build-mode: autobuild + - language: go + build-mode: autobuild + - language: python + build-mode: none # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support @@ -34,6 +42,7 @@ jobs: uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file.