|
@@ -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
|