From 9b35ba134612d4a735f62680e17155c16e25d5ca Mon Sep 17 00:00:00 2001 From: Brian Kungl Date: Mon, 14 Jul 2025 10:41:20 -0700 Subject: [PATCH 1/2] add actions to language matrix --- .github/workflows/codeql.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 17f9fa8..909d7c2 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -10,15 +10,18 @@ jobs: strategy: fail-fast: false + language: [ 'actions', 'go' ] runs-on: ubuntu-latest # windows-latest and ubuntu-latest are supported. macos-latest is not supported at this time. steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 From cddf15416c8b540b28b125ab24e89b14b0088f2a Mon Sep 17 00:00:00 2001 From: Brian Kungl Date: Thu, 17 Jul 2025 13:14:46 -0700 Subject: [PATCH 2/2] Update .github/workflows/codeql.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/codeql.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 909d7c2..7935672 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -10,7 +10,8 @@ jobs: strategy: fail-fast: false - language: [ 'actions', 'go' ] + matrix: + language: [ 'actions', 'go' ] runs-on: ubuntu-latest # windows-latest and ubuntu-latest are supported. macos-latest is not supported at this time.