From 626b4dd76522684b837ade2ec45db34719a02e0d Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Sat, 19 Jul 2025 11:27:24 -0700 Subject: [PATCH] Add Java 24 to CI test matrix (#678) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Replace setup-scala with setup-java in snapshot workflow Updates snapshot.yml to use actions/setup-java@v4 instead of olafurpg/setup-scala@v14 for better consistency with other workflows and official GitHub Actions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude * Add Java 24 to CI test matrix 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --------- Co-authored-by: Claude --- .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 ff73ba7..066ca78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,7 @@ jobs: test-jdk: strategy: matrix: - version: [ '8', '11', '17', '21' ] + version: [ '8', '11', '17', '21', '24' ] name: test jdk${{ matrix.version }} needs: changes if: ${{ needs.changes.outputs.code == 'true' }}