From 911b61d81aa8f496f7e37267f9dc218dc66d6813 Mon Sep 17 00:00:00 2001 From: Trey Chadick Date: Fri, 19 Dec 2025 11:23:31 -0800 Subject: [PATCH 1/2] Specify source root for CodeQL initialization --- .github/workflows/codeql.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8888bbc..8fdd9c5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -80,6 +80,7 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: + source-root: server/modules/OConnorLabModules 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. From a141acdcfd919e441eaa78d9a9f325eff94efb2b Mon Sep 17 00:00:00 2001 From: Trey Chadick Date: Fri, 19 Dec 2025 12:01:53 -0800 Subject: [PATCH 2/2] Change build-mode for java-kotlin to 'none' --- .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 8fdd9c5..2fe2f52 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -46,7 +46,7 @@ jobs: - language: actions build-mode: none - language: java-kotlin - build-mode: manual # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too. + build-mode: none # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too. - language: javascript-typescript build-mode: none # CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'