You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: .github/workflows/codeql.yml
+46-39Lines changed: 46 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,11 @@ name: "CodeQL Advanced"
13
13
14
14
on:
15
15
push:
16
-
branches: ["main"]
16
+
branches: ["main"]
17
17
pull_request:
18
-
branches: ["main"]
18
+
branches: ["main"]
19
19
schedule:
20
-
- cron: '41 3 * * 3'
20
+
- cron: "41 3 * * 3"
21
21
22
22
jobs:
23
23
analyze:
@@ -44,10 +44,10 @@ jobs:
44
44
fail-fast: false
45
45
matrix:
46
46
include:
47
-
- language: go
48
-
build-mode: autobuild
49
-
- language: javascript-typescript
50
-
build-mode: none
47
+
- language: go
48
+
build-mode: autobuild
49
+
- language: javascript-typescript
50
+
build-mode: none
51
51
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
52
52
# Use `c-cpp` to analyze code written in C, C++ or both
53
53
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
@@ -57,39 +57,46 @@ jobs:
57
57
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
58
58
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
59
59
steps:
60
-
- name: Checkout repository
61
-
uses: actions/checkout@v4
60
+
- name: Checkout repository
61
+
uses: actions/checkout@v4
62
62
63
-
# Initializes the CodeQL tools for scanning.
64
-
- name: Initialize CodeQL
65
-
uses: github/codeql-action/init@v3
66
-
with:
67
-
languages: ${{ matrix.language }}
68
-
build-mode: ${{ matrix.build-mode }}
69
-
# If you wish to specify custom queries, you can do so here or in a config file.
70
-
# By default, queries listed here will override any specified in a config file.
71
-
# Prefix the list here with "+" to use these queries and those in the config file.
63
+
- name: Setup Go
64
+
if: matrix.language == 'go'
65
+
uses: actions/setup-go@v5
66
+
with:
67
+
go-version-file: runtime/go.mod
68
+
cache-dependency-path: runtime/go.sum
72
69
73
-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
74
-
# queries: security-extended,security-and-quality
70
+
# Initializes the CodeQL tools for scanning.
71
+
- name: Initialize CodeQL
72
+
uses: github/codeql-action/init@v3
73
+
with:
74
+
languages: ${{ matrix.language }}
75
+
build-mode: ${{ matrix.build-mode }}
76
+
# If you wish to specify custom queries, you can do so here or in a config file.
77
+
# By default, queries listed here will override any specified in a config file.
78
+
# Prefix the list here with "+" to use these queries and those in the config file.
75
79
76
-
# If the analyze step fails for one of the languages you are analyzing with
77
-
# "We were unable to automatically build your code", modify the matrix above
78
-
# to set the build mode to "manual" for that language. Then modify this step
79
-
# to build your code.
80
-
# ℹ️ Command-line programs to run using the OS shell.
81
-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
82
-
- if: matrix.build-mode == 'manual'
83
-
shell: bash
84
-
run: |
85
-
echo 'If you are using a "manual" build mode for one or more of the' \
86
-
'languages you are analyzing, replace this with the commands to build' \
87
-
'your code, for example:'
88
-
echo ' make bootstrap'
89
-
echo ' make release'
90
-
exit 1
80
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
81
+
# queries: security-extended,security-and-quality
91
82
92
-
- name: Perform CodeQL Analysis
93
-
uses: github/codeql-action/analyze@v3
94
-
with:
95
-
category: "/language:${{matrix.language}}"
83
+
# If the analyze step fails for one of the languages you are analyzing with
84
+
# "We were unable to automatically build your code", modify the matrix above
85
+
# to set the build mode to "manual" for that language. Then modify this step
86
+
# to build your code.
87
+
# ℹ️ Command-line programs to run using the OS shell.
88
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
89
+
- if: matrix.build-mode == 'manual'
90
+
shell: bash
91
+
run: |
92
+
echo 'If you are using a "manual" build mode for one or more of the' \
93
+
'languages you are analyzing, replace this with the commands to build' \
0 commit comments