File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : " CodeQL Advanced"
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+ pull_request :
7+ branches : [ "master" ]
8+ schedule :
9+ - cron : ' 51 0 * * 6'
10+
11+ env :
12+ CODEQL_EXTRACTOR_ACTIONS_WIP_DATABASE : true
13+
14+ jobs :
15+ analyze :
16+ name : Analyze (${{ matrix.language }})
17+ runs-on : ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
18+ permissions :
19+ # required for all workflows
20+ security-events : write
21+
22+ # required to fetch internal or private CodeQL packs
23+ packages : read
24+
25+ # only required for workflows in private repositories
26+ actions : read
27+ contents : read
28+
29+ strategy :
30+ fail-fast : false
31+ matrix :
32+ include :
33+ - language : actions
34+ build-mode : none
35+ - language : javascript-typescript
36+ build-mode : none
37+ - language : python
38+ build-mode : none
39+ steps :
40+ - name : Checkout repository
41+ uses : actions/checkout@v4
42+
43+ # Initializes the CodeQL tools for scanning.
44+ - name : Initialize CodeQL
45+ uses : github/codeql-action/init@v4
46+ with :
47+ languages : ${{ matrix.language }}
48+ build-mode : ${{ matrix.build-mode }}
49+
50+ - name : Perform CodeQL Analysis
51+ uses : github/codeql-action/analyze@v4
52+ with :
53+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments