From 2ef89849e92c1a1865b87bee6556d3d000919be0 Mon Sep 17 00:00:00 2001 From: Mridula <66699525+mpeddada1@users.noreply.github.com> Date: Tue, 30 Sep 2025 13:51:33 -0400 Subject: [PATCH] ci: upgrade tests to JDK 25 --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 05593d27a..c1a809fe1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -117,15 +117,15 @@ jobs: - run: .kokoro/build.sh env: JOB_TYPE: test - units-java24: + units-java25: # Building using Java 8 and run the tests with Java 24 runtime - name: "units (24)" + name: "units (25)" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: - java-version: 24 + java-version: 25 distribution: temurin - name: "Set jvm system property environment variable for surefire plugin (unit tests)" # Maven surefire plugin (unit tests) allows us to specify JVM to run the tests.