Skip to content

Commit 1363f78

Browse files
committed
ci: run Gradle on Java 21; install Java 25 for toolchains; keep Gradle 8.10.2; retrigger
1 parent fe3524c commit 1363f78

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.ci-touch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Mon Nov 3 21:03:16 -03 2025
1+
Mon Nov 3 21:32:23 -03 2025

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515

16-
- name: Set up Java 25
16+
- name: Set up Java 21 (run Gradle)
17+
uses: actions/setup-java@v4
18+
with:
19+
distribution: temurin
20+
java-version: 21
21+
22+
- name: Set up Java 25 (toolchain)
1723
uses: actions/setup-java@v4
1824
with:
1925
distribution: temurin

.github/workflows/release-build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,13 @@ jobs:
3737
echo "artifact=build/libs/*.jar" >> $GITHUB_OUTPUT
3838
fi
3939
40-
- name: Set up Java
40+
- name: Set up Java 21 (run Gradle)
41+
uses: actions/setup-java@v4
42+
with:
43+
distribution: temurin
44+
java-version: 21
45+
46+
- name: Set up Java (toolchain target)
4147
uses: actions/setup-java@v4
4248
with:
4349
distribution: temurin

0 commit comments

Comments
 (0)