From 47f13ad7425dc599353aeeb9cfeec5456d3bced4 Mon Sep 17 00:00:00 2001 From: torrua Date: Wed, 1 Oct 2025 22:08:30 +0300 Subject: [PATCH] ``` build(github): downgrade codeql action versions from v4 to v3Downgrade the CodeQL GitHub Actions versions from v4 to v3 in the workflow configuration. This change affects the init, autobuild, and analyze steps of the CodeQL analysis process.``` --- .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 e18c521..f34d52b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -29,14 +29,14 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v4 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v4 + uses: github/codeql-action/autobuild@v3 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4 + uses: github/codeql-action/analyze@v3