diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index d3dd99468..9f4de5ba2 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -57,6 +57,13 @@ jobs: java-version: 25 - name: Test with JDK 25 run: mvn -v && mvn -B test + + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 26 + - name: Test with JDK 26 + run: mvn -v && mvn -B test - name: Set up settings.xml for Sonatype uses: actions/setup-java@v4 diff --git a/.github/workflows/pr-workflow.yml b/.github/workflows/pr-workflow.yml index 75c5e0155..c0395a289 100644 --- a/.github/workflows/pr-workflow.yml +++ b/.github/workflows/pr-workflow.yml @@ -51,3 +51,10 @@ jobs: java-version: 25 - name: Test with JDK 25 run: mvn -v && mvn -B test + + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 26 + - name: Test with JDK 26 + run: mvn -v && mvn -B test