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
# required to fetch internal or private CodeQL packs
18
+
#packages: read
19
+
20
+
# only required for workflows in private repositories
21
+
#actions: read
22
+
#contents: read
23
+
24
+
strategy:
25
+
fail-fast: false
26
+
matrix:
27
+
include:
28
+
- language: actions
29
+
build-mode: none
30
+
- language: java-kotlin
31
+
build-mode: autobuild
32
+
33
+
steps:
34
+
- name: Checkout repository
35
+
uses: actions/checkout@v4
36
+
37
+
- name: Initialize CodeQL
38
+
uses: github/codeql-action/init@v3
39
+
with:
40
+
languages: ${{ matrix.language }}
41
+
build-mode: ${{ matrix.build-mode }}
42
+
# If you wish to specify custom queries, you can do so here or in a config file.
43
+
# By default, queries listed here will override any specified in a config file.
44
+
# Prefix the list here with "+" to use these queries and those in the config file.
45
+
46
+
# 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
0 commit comments