From eb423054acaa177b41895606d7f33c27b3bd1f84 Mon Sep 17 00:00:00 2001 From: Yakir Oren Date: Sun, 8 Feb 2026 12:21:44 +0200 Subject: [PATCH] Upgrade CodeQL actions to version 3 Signed-off-by: Yakir Oren --- .github/workflows/go-basic-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-basic-tests.yaml b/.github/workflows/go-basic-tests.yaml index d944b2c..91a34a1 100644 --- a/.github/workflows/go-basic-tests.yaml +++ b/.github/workflows/go-basic-tests.yaml @@ -98,17 +98,17 @@ jobs: - name: Initialize CodeQL continue-on-error: true - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: go - name: Autobuild continue-on-error: true - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 - name: Perform CodeQL Analysis continue-on-error: true - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 # - name: Test go build # run: go build -v ${{ inputs.BUILD_PATH }}