File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Run CodeQL 
2+ 
3+ on :
4+   schedule :
5+     - cron : 0 0 * * * 
6+ 
7+ permissions :
8+   contents : read 
9+ 
10+ jobs :
11+   analyze :
12+     name : Analyze 
13+     runs-on : ubuntu-latest 
14+     permissions :
15+       actions : read 
16+       contents : read 
17+       security-events : write 
18+ 
19+     strategy :
20+       fail-fast : false 
21+       matrix :
22+         language : [cpp, javascript, python] 
23+ 
24+     steps :
25+       - name : Checkout repository 
26+         uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683   #  v4.2.2
27+ 
28+       #  Initializes the CodeQL tools for scanning.
29+       - name : Initialize CodeQL 
30+         uses : github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5   #  v3.28.11
31+         with :
32+           languages : ${{ matrix.language }} 
33+ 
34+       - name : Autobuild 
35+         uses : github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5   #  v3.28.11
36+ 
37+       - name : Perform CodeQL Analysis 
38+         uses : github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5   #  v3.28.11
39+         with :
40+           category : /language:${{matrix.language}} 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments