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
# Use only 'java' to analyze code written in Java, Kotlin or both
48
-
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
49
-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
50
-
54
+
include:
55
+
- language: go
56
+
build-mode: autobuild
57
+
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
58
+
# Use `c-cpp` to analyze code written in C, C++ or both
59
+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
60
+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
61
+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
62
+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
63
+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
64
+
# 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
51
65
steps:
52
66
- name: Checkout repository
53
-
uses: actions/checkout@v3
67
+
uses: actions/checkout@v4
54
68
55
69
# Initializes the CodeQL tools for scanning.
56
70
- name: Initialize CodeQL
57
-
uses: github/codeql-action/init@v2
71
+
uses: github/codeql-action/init@v3
58
72
with:
59
73
languages: ${{ matrix.language }}
60
-
queries: security-extended,security-and-quality
74
+
build-mode: ${{ matrix.build-mode }}
61
75
# If you wish to specify custom queries, you can do so here or in a config file.
62
76
# By default, queries listed here will override any specified in a config file.
63
77
# Prefix the list here with "+" to use these queries and those in the config file.
64
78
65
79
# 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
66
80
# queries: security-extended,security-and-quality
67
81
68
-
69
-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
70
-
# If this step fails, then you should remove it and run the build manually (see below)
71
-
- if: matrix.language == 'go'
72
-
name: Autobuild
73
-
uses: github/codeql-action/autobuild@v2
82
+
# If the analyze step fails for one of the languages you are analyzing with
83
+
# "We were unable to automatically build your code", modify the matrix above
84
+
# to set the build mode to "manual" for that language. Then modify this step
85
+
# to build your code.
74
86
# ℹ️ Command-line programs to run using the OS shell.
75
87
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
76
-
77
-
# If the Autobuild fails above, remove it and uncomment the following three lines.
78
-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
79
-
80
-
# - run: |
81
-
# echo "Run, Build Application using script"
82
-
# ./location_of_script_within_repo/buildscript.sh
83
-
88
+
- if: matrix.build-mode == 'manual'
89
+
shell: bash
90
+
run: |
91
+
echo 'If you are using a "manual" build mode for one or more of the' \
92
+
'languages you are analyzing, replace this with the commands to build' \
0 commit comments