Skip to content

Commit b6bf999

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] java versions
1 parent 10a63ad commit b6bf999

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/java-gradle.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
31-
java: ['20', '21', '22']
31+
java: ['22', '23', '24']
3232
runs-on: ${{ matrix.os }}
3333

3434
steps:
@@ -39,6 +39,13 @@ jobs:
3939
java-version: ${{ matrix.java }}
4040
distribution: temurin
4141

42+
- name: Tool test
43+
run: >
44+
echo "Java version: ${{ matrix.java }}"
45+
java -version
46+
echo "OS: ${{ matrix.os }}"
47+
echo "Gradle version:"
48+
./gradlew --version
4249
- name: Validate Gradle wrapper
4350
uses: gradle/actions/wrapper-validation@v4
4451

0 commit comments

Comments
 (0)