From 4b758a4a37b0faa554479dc804ee2fd9a667c545 Mon Sep 17 00:00:00 2001 From: Bob Date: Thu, 27 Aug 2026 15:47:34 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20update=20codeql-action=20v2=E2=86=92v3=20?= =?UTF-8?q?and=20checkout=20v3=E2=86=92v4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit codeql-action v2 is deprecated as of 2025-01-10 (GitHub changelog). Update all three action steps (init, autobuild, analyze) to v3. Also bump actions/checkout from v3 to v4 while here. This fixes the failing 'Analyze (python)' CI check on PR #135. --- .github/workflows/codeql.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3d1854df..cd219530 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,18 +24,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-and-quality - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{ matrix.language }}"