This is an automated email from the ASF dual-hosted git repository.

Alanxtl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git


The following commit(s) were added to refs/heads/develop by this push:
     new 830dfbbb3 ci: fixes codeql ci fail (#3652)
830dfbbb3 is described below

commit 830dfbbb3e0e0a5e8340a247349916ad7ecdc513
Author: Xuetao Li <[email protected]>
AuthorDate: Thu Aug 13 00:59:47 2026 +0000

    ci: fixes codeql ci fail (#3652)
---
 .github/workflows/codeql-analysis.yml | 26 ++++++--------------------
 1 file changed, 6 insertions(+), 20 deletions(-)

diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index 4c1d2e9ab..a9f8628dc 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -34,26 +34,12 @@ jobs:
 
       # Initializes the CodeQL tools for scanning.
       - name: Initialize CodeQL
-        uses: github/codeql-action/init@v3
-        # Override language selection by uncommenting this and choosing your 
languages
-        # with:
-        #   languages: go, javascript, csharp, python, cpp, java
-
-      # 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@v3
-
-      # â„šī¸ Command-line programs to run using the OS shell.
-      # 📚 https://git.io/JvXDl
-
-      # âœī¸ If the Autobuild fails above, remove it and uncomment the following 
three lines
-      #    and modify them (or add more) to build your code if your project
-      #    uses a compiled language
+        uses: github/codeql-action/init@v4
+        with:
+          languages: go
 
-      #- run: |
-      #   make bootstrap
-      #   make release
+      - name: Build Go Code
+        run: go build -v ./...
 
       - name: Perform CodeQL Analysis
-        uses: github/codeql-action/analyze@v3
+        uses: github/codeql-action/analyze@v4

Reply via email to