File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1010 permissions :
1111 actions : read # for github/codeql-action/init to get workflow details
1212 security-events : write # for github/codeql-action/analyze to upload SARIF results
13- runs-on : ubuntu-latest
13+ runs-on : windows-2019
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ language : [ java, cpp ]
1418
1519 steps :
1620 - uses : actions/checkout@v4
@@ -24,12 +28,12 @@ jobs:
2428 - name : Initialize CodeQL
2529 uses : github/codeql-action/init@v3
2630 with :
27- languages : java
31+ languages : ${{ matrix.language }}
2832
2933 - uses : gradle/gradle-build-action@v3
3034 with :
3135 # skipping build cache is needed so that all modules will be analyzed
32- arguments : assemble --no-build-cache
36+ arguments : assemble -Dai.etw.native.build=release - -no-build-cache
3337
3438 - name : Perform CodeQL analysis
3539 uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments