From c46f90cab0c1879347f55099286365ee18668b55 Mon Sep 17 00:00:00 2001 From: Davis Rollman Date: Tue, 7 Apr 2026 05:50:45 -0400 Subject: [PATCH] Add Java 25 to GitHub Actions matrix --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 337fd60115..3105766a10 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -178,7 +178,7 @@ jobs: name: android-natives path: build/native - # Build the engine, we only deploy from ubuntu-latest jdk21 + # Build the engine, we only deploy from ubuntu-latest jdk25 BuildJMonkey: needs: [BuildAndroidNatives, BuildIosNatives] name: Build on ${{ matrix.osName }} jdk${{ matrix.jdk }} @@ -187,7 +187,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest,windows-latest,macOS-latest] - jdk: [11, 17, 21] + jdk: [11, 17, 21, 25] include: - os: ubuntu-latest osName: linux @@ -202,6 +202,8 @@ jobs: deploy: false - jdk: 17 deploy: false + - jdk: 21 + deploy: false steps: - name: Clone the repo