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