Skip to content

Commit a0da248

Browse files
committed
apply spotless
1 parent 7844aa0 commit a0da248

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- uses: actions/setup-java@v4
2929
with:
30-
java-version: 17
30+
java-version: 21
3131
distribution: temurin
3232

3333
- name: Setup Gradle

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: actions/setup-java@v4
3030
with:
31-
java-version: 17
31+
java-version: 21
3232
distribution: temurin
3333

3434
- name: Cache SonarQube packages
@@ -42,7 +42,7 @@ jobs:
4242
uses: gradle/actions/setup-gradle@v4
4343

4444
- name: Build
45-
run: ./gradlew build sonar
45+
run: ./gradlew build spotlessCheck sonar
4646
env:
4747
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4848
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222

2323
- uses: actions/setup-java@v4
2424
with:
25-
java-version: 17
25+
java-version: 21
2626
distribution: temurin
2727

2828
- name: Setup Gradle
2929
uses: gradle/actions/setup-gradle@v4
3030

3131
- name: Build
32-
run: ./gradlew build
32+
run: ./gradlew build spotlessCheck

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ pluginManagement {
55
maven { url = uri("https://repo.spongepowered.org/repository/maven-public/") }
66
maven { url = uri("https://maven.neoforged.net/releases/") }
77
}
8-
}
8+
}

0 commit comments

Comments
 (0)