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
- exclude .md and .txt files from analysis
- upgrade codeql to `v3` - the current version of the CodeQL (`v1`)
was deprecated on January 18th, 2023, and is no longer updated or
supported. For better performance, improved security, and new
features, we upgrade it to v3. [More
information](https://github.blog/changelog/2023-01-18-code-scanning-codeql-action-v1-is-now-deprecated)
- comment out the autobuild step, which is not needed with javascript-based code
- set the timeout-minutes option to 360 - the maximum number of minutes to run the step before killing the process
# If you wish to specify custom queries, you can do so here or in a config file.
60
+
# By default, queries listed here will override any specified in a config file.
61
+
# Prefix the list here with "+" to use these queries and those in the config file.
53
62
54
-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55
-
# If this step fails, then you should remove it and run the build manually (see below)
56
-
- name: Autobuild
57
-
uses: github/codeql-action/autobuild@v1
63
+
# 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
64
+
# queries: security-extended,security-and-quality
58
65
59
-
# i️ Command-line programs to run using the OS shell.
60
-
# 📚 https://git.io/JvXDl
61
66
62
-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
63
-
# and modify them (or add more) to build your code if your project
64
-
# uses a compiled language
67
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
68
+
# If this step fails, then you should remove it and run the build manually (see below)
69
+
# - name: Autobuild
70
+
# uses: github/codeql-action/autobuild@v2
65
71
66
-
#- run: |
67
-
# make bootstrap
68
-
# make release
72
+
# i️ Command-line programs to run using the OS shell.
73
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
69
74
70
-
- name: Perform CodeQL Analysis
71
-
uses: github/codeql-action/analyze@v1
75
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
76
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
0 commit comments