From 10e3eb239fba5b8490e469cf4c685535feeab152 Mon Sep 17 00:00:00 2001 From: Prarthona Paul Date: Wed, 29 May 2024 10:22:29 -0400 Subject: [PATCH] [ELY-2769] Update CI to also run with SE 21 for branch 2.2.x --- .github/workflows/pr-ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-ci.yaml b/.github/workflows/pr-ci.yaml index 32ffa815c7..eb720698df 100644 --- a/.github/workflows/pr-ci.yaml +++ b/.github/workflows/pr-ci.yaml @@ -15,12 +15,13 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] + java: ['11', '17', '21'] steps: - uses: actions/checkout@v2 - - name: Set up JDK 11 + - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: - java-version: 11 + java-version: ${{ matrix.java }} # ELY-2204 - Temporarily preventing OidcTest from running on macOS since there # are intermittent issues with starting up the Docker container. #- if: matrix.os == 'macos-latest'