File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,20 @@ jobs:
3838
3939 steps :
4040 - name : Checkout repository
41- uses : actions/checkout@v3
41+ uses : actions/checkout@v4
42+
43+ - name : Setup Java
44+ uses : actions/setup-java@v4
45+ with :
46+ distribution : ' temurin'
47+ java-version : |
48+ 8
49+ 22
50+ cache : ' maven'
4251
4352 # Initializes the CodeQL tools for scanning.
4453 - name : Initialize CodeQL
45- uses : github/codeql-action/init@v2
54+ uses : github/codeql-action/init@v3
4655 with :
4756 languages : ${{ matrix.language }}
4857 # If you wish to specify custom queries, you can do so here or in a config file.
5463
5564 - run : |
5665 echo "Build kohlschutter-parent with Maven"
57- mvn clean install -Pstrict -Puse -snapshots
66+ mvn clean install -Dcodeql -Dstrict -Duse -snapshots
5867
5968 - name : Perform CodeQL Analysis
60- uses : github/codeql-action/analyze@v2
69+ uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments