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
Copy file name to clipboardExpand all lines: .github/workflows/codeql.yml
+67-46Lines changed: 67 additions & 46 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,9 @@ on:
8
8
schedule:
9
9
- cron: "32 23 * * 5"
10
10
11
+
env:
12
+
CARGO_TERM_COLOR: always
13
+
11
14
jobs:
12
15
analyze:
13
16
name: Analyze (${{ matrix.language }})
@@ -21,13 +24,6 @@ jobs:
21
24
# required for all workflows
22
25
security-events: write
23
26
24
-
# required to fetch internal or private CodeQL packs
25
-
packages: read
26
-
27
-
# only required for workflows in private repositories
28
-
actions: read
29
-
contents: read
30
-
31
27
strategy:
32
28
fail-fast: false
33
29
matrix:
@@ -36,56 +32,81 @@ jobs:
36
32
build-mode: none
37
33
- language: javascript-typescript
38
34
build-mode: none
39
-
- language: rust
40
-
build-mode: none
41
-
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
42
-
# Use `c-cpp` to analyze code written in C, C++ or both
43
-
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
44
-
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
45
-
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
46
-
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
47
-
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
48
-
# 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
# If you wish to specify custom queries, you can do so here or in a config file.
66
-
# By default, queries listed here will override any specified in a config file.
67
-
# Prefix the list here with "+" to use these queries and those in the config file.
68
-
69
-
# 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
70
-
# queries: security-extended,security-and-quality
71
-
72
-
# If the analyze step fails for one of the languages you are analyzing with
73
-
# "We were unable to automatically build your code", modify the matrix above
74
-
# to set the build mode to "manual" for that language. Then modify this step
75
-
# to build your code.
76
-
# ℹ️ Command-line programs to run using the OS shell.
77
-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
0 commit comments