From 443897ac9241f8dd538293eadd9705e7075982c2 Mon Sep 17 00:00:00 2001 From: Christoph John Date: Tue, 25 Nov 2025 10:02:00 +0100 Subject: [PATCH 1/2] Update macOS version in CI workflow macos-13 will be removed and macos-15 seems to be slow: https://github.com/actions/runner-images/issues/12545 --- .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 ccdd152b3..6a0fb41fa 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macOS-13] + os: [ubuntu-latest, macOS-14] java: [8, 11, 21] fail-fast: false max-parallel: 4 From 35bfd912f92301901bd3b0a75ab28f77823043e0 Mon Sep 17 00:00:00 2001 From: Christoph John Date: Tue, 25 Nov 2025 10:09:53 +0100 Subject: [PATCH 2/2] Change JDK distribution from Temurin to Corretto ... since it is supported on macOS for Java 8. --- .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 6a0fb41fa..b0d4ef606 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -22,7 +22,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v5 with: - distribution: 'temurin' + distribution: 'corretto' java-version: ${{ matrix.java }} cache: 'maven' - name: Test with Maven @@ -49,7 +49,7 @@ jobs: - name: Set up Windows JDK uses: actions/setup-java@v5 with: - distribution: 'temurin' + distribution: 'corretto' java-version: ${{ matrix.java }} cache: 'maven' - name: Test with Maven on Windows