File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 66 - main
77 - release/*
88 pull_request :
9+ branches :
10+ - main
11+ - release/*
912 # TODO (trask) adding this to the merge queue causes the merge queue to fail
1013 # see related issues
1114 # - https://github.com/github/codeql-action/issues/1572
@@ -20,10 +23,17 @@ permissions:
2023
2124jobs :
2225 analyze :
26+ name : Analyze (${{ matrix.language }})
2327 permissions :
2428 contents : read
2529 actions : read # for github/codeql-action/init to get workflow details
2630 security-events : write # for github/codeql-action/analyze to upload SARIF results
31+ strategy :
32+ fail-fast : false
33+ matrix :
34+ include :
35+ - language : actions
36+ - language : javascript-typescript
2737 runs-on : ubuntu-latest
2838 steps :
2939 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4050 - name : Initialize CodeQL
4151 uses : github/codeql-action/init@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
4252 with :
43- languages : java, actions
53+ languages : ${{ matrix.language }}
4454 # using "latest" helps to keep up with the latest Kotlin support
4555 # see https://github.com/github/codeql-action/issues/1555#issuecomment-1452228433
4656 tools : latest
5363
5464 - name : Perform CodeQL analysis
5565 uses : github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
66+ with :
67+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments