From 2e2243b7b1ecbe1f14acc00e1912e3304ed3bfa9 Mon Sep 17 00:00:00 2001 From: Adnan Khan Date: Fri, 22 Aug 2025 13:53:01 -0400 Subject: [PATCH] Update CodeQL version and include Actions packs. --- .github/workflows/codeql.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 359e4f2..005dd4f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'go' ] + language: [ 'go', 'actions' ] steps: - name: Checkout repository @@ -28,7 +28,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} @@ -36,6 +36,6 @@ jobs: run: make - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}"