From 0c4c3fb7eeb430a4c92a6b94170aa22a1aff1c20 Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Tue, 11 Aug 2026 20:40:35 -0700 Subject: [PATCH] ci: use temurin distribution for setup-java The 'adopt' (AdoptOpenJDK) distribution is deprecated and slated for removal in setup-java v6. Switch to its successor, Eclipse Temurin, to clear the CI deprecation warning. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2167c77..5ca9582 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: uses: actions/setup-java@v5 with: java-version: 17 - distribution: "adopt" + distribution: "temurin" - name: Run tests run: | cd "${{ matrix.showcase }}"