File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
3+ name : CodeQL
4+
5+ on :
6+ pull_request :
7+ push :
8+ branches : ["main"]
9+ schedule :
10+ - cron : " 30 6 * * *"
11+ workflow_dispatch :
12+
13+ permissions :
14+ contents : read
15+
16+ jobs :
17+ analyze :
18+ name : Analyze (${{ matrix.language }})
19+ runs-on : ubuntu-latest
20+ permissions :
21+ security-events : write
22+ packages : read
23+ strategy :
24+ fail-fast : false
25+ matrix :
26+ include :
27+ - language : actions
28+ build-mode : none
29+ steps :
30+ - name : Checkout
31+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
33+ - name : Initialize CodeQL
34+ uses : github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
35+ with :
36+ languages : ${{ matrix.language }}
37+ build-mode : ${{ matrix.build-mode }}
38+
39+ - name : Perform CodeQL Analysis
40+ uses : github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
41+ with :
42+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments