From c9ca395d68d4d82b9f2a5320025dba4b473aeae5 Mon Sep 17 00:00:00 2001 From: RAJVEER42 Date: Wed, 10 Jun 2026 01:30:55 +0530 Subject: [PATCH] Bump CodeQL workflow to non-retired action versions GitHub retired CodeQL Action v2 (announced 2025-01-10); workflows still on v2 run on an unsupported runtime and may stop working. Update codeql-action init/analyze v2 -> v3 and actions/checkout v3 -> v4. --- .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 2cc3c4b2..50818869 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,12 +24,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: config-file: .codeql/codeql-config.yml - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 \ No newline at end of file + uses: github/codeql-action/analyze@v3 \ No newline at end of file