File tree Expand file tree Collapse file tree 2 files changed +45
-1
lines changed
Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ concurrency :
4+ group : ${{ github.workflow }}-${{ github.ref }}
5+ cancel-in-progress : true
6+
7+ on :
8+ push :
9+ branches : ["main"]
10+ pull_request :
11+ branches : ["main"]
12+ schedule :
13+ - cron : " 18 4 * * 0"
14+
15+ jobs :
16+ analyze :
17+ name : Analyze (${{ matrix.language }})
18+ runs-on : ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
19+ permissions :
20+ security-events : write
21+ packages : read
22+
23+ strategy :
24+ fail-fast : false
25+ matrix :
26+ include :
27+ - language : actions
28+ build-mode : none
29+ - language : ruby
30+ build-mode : none
31+ steps :
32+ - name : Checkout repository
33+ uses : actions/checkout@v6
34+
35+ - name : Initialize CodeQL
36+ uses : github/codeql-action/init@v4
37+ with :
38+ languages : ${{ matrix.language }}
39+ build-mode : ${{ matrix.build-mode }}
40+
41+ - name : Perform CodeQL Analysis
42+ uses : github/codeql-action/analyze@v4
43+ with :
44+ category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 11{
22 "branches" : [" main" ],
3- "tagFormat" : " ${version}" ,
3+ "tagFormat" : " v ${version}" ,
44 "plugins" : [
55 [
66 " @semantic-release/release-notes-generator" ,
You can’t perform that action at this time.
0 commit comments