File tree Expand file tree Collapse file tree 3 files changed +48
-46
lines changed
Expand file tree Collapse file tree 3 files changed +48
-46
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CodeQL
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ push :
7+ branches :
8+ - master
9+ schedule :
10+ - cron : 00 3 * * 1
11+ workflow_dispatch :
12+ concurrency :
13+ group : " ${{ github.workflow }}-${{ github.ref }}"
14+ cancel-in-progress : true
15+ permissions :
16+ actions : read
17+ contents : read
18+ security-events : write
19+ jobs :
20+ analyze :
21+ name : Analyze (${{ matrix.language }})
22+ runs-on : ubuntu-latest
23+ strategy :
24+ fail-fast : false
25+ matrix :
26+ include :
27+ - language : actions
28+ build-mode : none
29+ - language : javascript-typescript
30+ build-mode : none
31+ - language : ruby
32+ build-mode : none
33+ steps :
34+ - name : Checkout repository
35+ uses : actions/checkout@v6
36+ - name : Initialize CodeQL
37+ uses : github/codeql-action/init@v4
38+ with :
39+ languages : ${{ matrix.language }}
40+ build-mode : ${{ matrix.build-mode }}
41+ config : |
42+ paths-ignore:
43+ - lib/generators/manageiq/plugin/templates
44+ - lib/generators/manageiq/provider/templates
45+ - name : Perform CodeQL Analysis
46+ uses : github/codeql-action/analyze@v4
47+ with :
48+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments