Skip to content

Commit 9e17edd

Browse files
committed
chore: replace Autobuild with regular maven
1 parent f428993 commit 9e17edd

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@ jobs:
2121
uses: github/codeql-action/init@v4
2222
with:
2323
languages: ${{ matrix.language }}
24-
- name: Setup Java 21
24+
- name: Setup Java
2525
uses: actions/setup-java@v5
2626
with:
27-
distribution: temurin
27+
distribution: 'microsoft'
2828
java-version: '21'
29-
- name: Autobuild
30-
uses: github/codeql-action/autobuild@v4
29+
cache: 'maven'
30+
- name: Build and Analyze
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
run: mvn -B verify -Dgpg.skip
3134
- name: Perform CodeQL Analysis
3235
uses: github/codeql-action/analyze@v4

0 commit comments

Comments
 (0)