Skip to content

Commit 6ca83bf

Browse files
committed
Merge remote-tracking branch 'origin/feature/mvp' into feature/mvp
2 parents 6ec15e7 + 21abf4a commit 6ca83bf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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:
@@ -31,4 +33,4 @@ jobs:
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

0 commit comments

Comments
 (0)