From bf20d688737bc96ad448054e072019d52a96fe2d Mon Sep 17 00:00:00 2001 From: Prarthona Paul Date: Fri, 3 May 2024 14:21:58 -0400 Subject: [PATCH] [ELYWEB-235] Update CI to also run with SE 21: Update the value of the "runs-on" property --- .github/workflows/pr-ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-ci.yaml b/.github/workflows/pr-ci.yaml index 22c3e52..b92338e 100644 --- a/.github/workflows/pr-ci.yaml +++ b/.github/workflows/pr-ci.yaml @@ -10,11 +10,11 @@ on: jobs: build: - runs-on: ${{ matrix.os }}-jdk${{ matrix.java }} + runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - java: ['11', '21'] + java: ['11', '17', '21'] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }}