From 8d954c3b2966fe97ff3d3bdf0b0410cf50a556c8 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 16 Jan 2026 03:41:10 +0000 Subject: [PATCH] fix: update Go version to 1.25.6 and modify build step in CodeQL workflow --- .github/workflows/codeql.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 267da0b8..311b90d2 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,7 +13,7 @@ concurrency: cancel-in-progress: true env: - GO_VERSION: '1.25.5' + GO_VERSION: '1.25.6' permissions: contents: read @@ -56,8 +56,11 @@ jobs: go-version: ${{ env.GO_VERSION }} cache-dependency-path: backend/go.sum - - name: Autobuild - uses: github/codeql-action/autobuild@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4 + - name: Build Go code + if: matrix.language == 'go' + run: | + cd backend + go build -v ./... - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4