File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,13 @@ jobs:
1111 - uses : actions/checkout@v4
1212 with :
1313 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
14- - name : Set up JDK 17
14+ - name : Set up JDK 21
1515 uses : actions/setup-java@v4
1616 with :
17- java-version : 17
18- distribution : ' zulu' # Alternative distribution options are available
17+ java-version : 21
18+ distribution : ' corretto' # Alternative distribution options are available
19+ - name : Make gradlew executable
20+ run : chmod +x gradlew
1921 - name : Cache SonarQube packages
2022 uses : actions/cache@v4
2123 with :
3133 - name : Build and analyze
3234 env :
3335 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
34- run : ./gradlew build sonar --info
36+ run : ./gradlew build sonar --info
You can’t perform that action at this time.
0 commit comments