From a7269ec8c7c7881d6e9c036ee4a4f138873d0c28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 09:35:23 +0000 Subject: [PATCH 1/2] Bump actions/setup-java from 5 to 6 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 5 to 6. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35309ef9..29169edf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: steps: - uses: actions/checkout@v7.0.1 - name: Set up JDK ${{ matrix.java-version }} - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: ${{ matrix.java-version }} distribution: 'adopt' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c255c1a..873ba7f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: - name: Checkout Code uses: actions/checkout@v7.0.1 - name: Set up JVM - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: distribution: 'temurin' java-version: '17' From 4062129b902fd4f5e38b1d07be35f230f54a6806 Mon Sep 17 00:00:00 2001 From: Javier Acero Date: Tue, 1 Sep 2026 11:47:16 +0200 Subject: [PATCH 2/2] fix: Replace retired adopt JDK distribution with temurin setup-java v6 removed support for the 'adopt' distribution. AdoptOpenJDK became Eclipse Temurin, so 'temurin' provides the same JDKs. The release workflow already uses it. --- .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 29169edf..ceef1f41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: uses: actions/setup-java@v6 with: java-version: ${{ matrix.java-version }} - distribution: 'adopt' + distribution: 'temurin' cache: gradle - name: Grant execute permission for gradlew run: chmod +x gradlew