From e99b7574ce0c27d69278c74f8cf7b23eb9779e4d Mon Sep 17 00:00:00 2001 From: Brian Kungl Date: Mon, 14 Jul 2025 10:49:30 -0700 Subject: [PATCH] Add languages to codeql matrix --- .github/workflows/codeql.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9d94d9fae..ef070bf35 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,6 +17,8 @@ jobs: strategy: fail-fast: false + matrix: + language: [ 'actions', 'go' ] runs-on: ubuntu-latest # windows-latest and ubuntu-latest are supported. macos-latest is not supported at this time. @@ -26,6 +28,8 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3