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+ version : 2
2+ updates :
3+ - package-ecosystem : " nuget"
4+ directory : " /"
5+ schedule :
6+ interval : " weekly"
7+ open-pull-requests-limit : 10
Original file line number Diff line number Diff line change 1+ name : CodeQL
2+ on :
3+ push : { branches: [ "main" ] }
4+ pull_request : { branches: [ "main" ] }
5+ schedule :
6+ - cron : " 0 3 * * 1" # weekly
7+
8+ jobs :
9+ analyze :
10+ permissions :
11+ contents : read
12+ security-events : write
13+ actions : read
14+ runs-on : ubuntu-latest
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ language : [ "csharp" ]
19+
20+ steps :
21+ - name : Checkout repository
22+ uses : actions/checkout@v4
23+
24+ - name : Initialize CodeQL
25+ uses : github/codeql-action/init@v3
26+ with :
27+ languages : ${{ matrix.language }}
28+
29+ - name : Autobuild
30+ uses : github/codeql-action/autobuild@v3
31+
32+ - name : Perform CodeQL Analysis
33+ uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments