From ce40417502d132cb970a0507a946714a27494345 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Mon, 9 Jun 2025 06:31:57 +0300 Subject: [PATCH 1/3] Jdk 25 --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 0eaa3256..c83fd6d0 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - java: [11, 17, 21, 23, 24] + java: [11, 17, 21, 23, 24, 25-ea] steps: - uses: actions/checkout@v4 From 6eeeb23688067720227b1e7eb314434f68eccded Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Mon, 9 Jun 2025 06:33:55 +0300 Subject: [PATCH 2/3] Update maven.yml --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c83fd6d0..970bf813 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - java: [11, 17, 21, 23, 24, 25-ea] + java: [11, 17, 21, 23, 24, 25] steps: - uses: actions/checkout@v4 From 756eaeb7866bbb96eb40d2fe47e1878572511871 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Mon, 9 Jun 2025 06:37:17 +0300 Subject: [PATCH 3/3] Update maven.yml --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 970bf813..b690a308 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,14 +14,14 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - java: [11, 17, 21, 23, 24, 25] + java: [11, 17, 21, 23, 24, 25-ea] steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v4 with: - distribution: 'corretto' + distribution: 'temurin' java-version: ${{ matrix.java }} cache: 'maven' - name: Build with Maven