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
25
+
packages: read
26
+
27
+
strategy:
28
+
fail-fast: false
29
+
matrix:
30
+
include:
31
+
- language: c-cpp
32
+
build-mode: manual
33
+
- language: python
34
+
build-mode: none
35
+
steps:
36
+
- name: Checkout repository
37
+
uses: actions/checkout@v4
38
+
- uses: actions/setup-python@v3
39
+
40
+
# Initializes the CodeQL tools for scanning.
41
+
- name: Initialize CodeQL
42
+
uses: github/codeql-action/init@v3
43
+
with:
44
+
languages: ${{ matrix.language }}
45
+
build-mode: ${{ matrix.build-mode }}
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