File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,13 +4,16 @@ updates:
44 directory : " /"
55 schedule :
66 interval : " weekly"
7+ target-branch : " develop"
78
89 - package-ecosystem : " docker"
910 directory : " /"
1011 schedule :
1112 interval : " weekly"
13+ target-branch : " develop"
1214
1315 - package-ecosystem : " github-actions"
1416 directory : " /"
1517 schedule :
1618 interval : " weekly"
19+ target-branch : " develop"
Original file line number Diff line number Diff line change 1+ name : " CodeQL Analysis"
2+
3+ on :
4+ push :
5+ branches :
6+ - develop
7+ pull_request :
8+ branches :
9+ - develop
10+ schedule :
11+ - cron : " 0 3 * * 1"
12+
13+ jobs :
14+ analyze :
15+ name : Analyze (${{ matrix.language }})
16+ runs-on : ubuntu-latest
17+ permissions :
18+ security-events : write
19+ actions : read
20+ contents : read
21+
22+ strategy :
23+ fail-fast : false
24+ matrix :
25+ language :
26+ - python
27+
28+ steps :
29+ - name : Checkout repository
30+ uses : actions/checkout@v4
31+
32+ - name : Initialize CodeQL
33+ uses : github/codeql-action/init@v3
34+ with :
35+ languages : ${{ matrix.language }}
36+
37+ - name : Autobuild
38+ uses : github/codeql-action/autobuild@v3
39+
40+ - name : Perform CodeQL Analysis
41+ uses : github/codeql-action/analyze@v3
42+ with :
43+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments