Переглянути джерело

update codeql action to v3 (#2822)

blotus 1 рік тому
батько
коміт
bdecf38616
1 змінених файлів з 7 додано та 8 видалено
  1. 7 8
      .github/workflows/codeql-analysis.yml

+ 7 - 8
.github/workflows/codeql-analysis.yml

@@ -48,10 +48,15 @@ jobs:
       with:
         # required to pick up tags for BUILD_VERSION
         fetch-depth: 0
+    - name: "Set up Go"
+      uses: actions/setup-go@v5
+      with:
+        go-version: "1.21.6"
+        cache-dependency-path: "**/go.sum"
 
     # Initializes the CodeQL tools for scanning.
     - name: Initialize CodeQL
-      uses: github/codeql-action/init@v2
+      uses: github/codeql-action/init@v3
       with:
         languages: ${{ matrix.language }}
         # If you wish to specify custom queries, you can do so here or in a config file.
@@ -71,14 +76,8 @@ jobs:
     #    and modify them (or add more) to build your code if your project
     #    uses a compiled language
 
-    - name: "Set up Go"
-      uses: actions/setup-go@v5
-      with:
-        go-version: "1.21.6"
-        cache-dependency-path: "**/go.sum"
-
     - run: |
        make clean build BUILD_RE2_WASM=1
 
     - name: Perform CodeQL Analysis
-      uses: github/codeql-action/analyze@v2
+      uses: github/codeql-action/analyze@v3