From f7889e7b83fc19f86f6fb9dc71543da7140986f4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 20:47:37 +0000 Subject: [PATCH 1/2] Update actions/setup-java action to v6 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4ed69d1e..5b8d58cf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -52,7 +52,7 @@ jobs: - name: Checkout uses: actions/checkout@v7 - name: Set up JDK - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: distribution: ${{ matrix.java-distribution }} java-version: ${{ matrix.java-version }} From f88ce57868cce246d5cb047e2506deff0b24f3cc Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Fri, 18 Sep 2026 16:49:45 -0400 Subject: [PATCH 2/2] ci: replace retired adopt-hotspot distribution with temurin actions/setup-java@v6 dropped the adopt-hotspot distribution alias, failing the Set up JDK step with "No supported distribution was found for input adopt-hotspot". Switch to temurin, the Eclipse Adoptium build the adopt-hotspot alias previously resolved to. The ubuntu matrix already tested temurin, so the redundant adopt-hotspot entry is dropped rather than duplicated. --- .github/workflows/CI.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5b8d58cf..ba092444 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,17 +34,16 @@ jobs: platform: - ubuntu-latest java-distribution: - - adopt-hotspot - temurin - zulu java-version: - 11 include: - platform: windows-latest - java-distribution: adopt-hotspot + java-distribution: temurin java-version: 11 - platform: macos-latest - java-distribution: adopt-hotspot + java-distribution: temurin java-version: 11 runs-on: ${{ matrix.platform }} timeout-minutes: 5