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-kotlin' to analyze code written in Java, Kotlin or both
38
+
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
37
39
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
38
40
39
41
steps:
40
42
- name: Checkout repository
41
-
uses: actions/checkout@v3
43
+
uses: actions/checkout@v4
42
44
43
45
- name: Set up Java
44
46
uses: actions/setup-java@v3
@@ -48,32 +50,33 @@ jobs:
48
50
49
51
# Initializes the CodeQL tools for scanning.
50
52
- name: Initialize CodeQL
51
-
uses: github/codeql-action/init@v2
53
+
uses: github/codeql-action/init@v3
52
54
with:
53
55
languages: ${{ matrix.language }}
54
56
# If you wish to specify custom queries, you can do so here or in a config file.
55
57
# By default, queries listed here will override any specified in a config file.
56
58
# Prefix the list here with "+" to use these queries and those in the config file.
57
59
58
-
#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
60
+
#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
59
61
queries: security-extended,security-and-quality
60
62
61
63
62
-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
64
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
63
65
# If this step fails, then you should remove it and run the build manually (see below)
64
66
- name: Autobuild
65
-
uses: github/codeql-action/autobuild@v2
67
+
uses: github/codeql-action/autobuild@v3
66
68
67
69
# ℹ️ Command-line programs to run using the OS shell.
68
70
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
69
71
70
-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
71
-
# and modify them (or add more) to build your code if your project
72
-
# uses a compiled language
72
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
73
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
0 commit comments