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
secrets: inherit # needed for logging to the ghcr.io registry
42
42
43
+
codeql:
44
+
name: codeql
45
+
runs-on: ubuntu-latest
46
+
permissions:
47
+
actions: read
48
+
contents: read
49
+
security-events: write
50
+
51
+
strategy:
52
+
fail-fast: false
53
+
matrix:
54
+
language: ["python"]
55
+
56
+
steps:
57
+
- name: Checkout repository
58
+
uses: actions/checkout@v4
59
+
60
+
# Initializes the CodeQL tools for scanning.
61
+
- name: Initialize CodeQL
62
+
uses: github/codeql-action/init@v3
63
+
with:
64
+
languages: ${{ matrix.language }}
65
+
# If you wish to specify custom queries, you can do so here or in a config file.
66
+
# By default, queries listed here will override any specified in a config file.
67
+
# Prefix the list here with "+" to use these queries and those in the config file.
68
+
69
+
# 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