From b28df61b219eabc76a8ee8dbb7368d6e7fcd1ad9 Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Tue, 23 Jan 2024 16:38:43 -0500 Subject: [PATCH] Update GA worklows to use JDK 21.0.2 Signed-off-by: Andriy Redko --- .github/workflows/CI.yml | 8 +++----- .github/workflows/test_security.yml | 3 +-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 060e5a2d2..8781cc27d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -35,8 +35,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - # Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426 - java: [11, 21.0.1] + java: [11, 21] include: - os: ubuntu-latest java: 17 @@ -64,8 +63,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - # Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426 - java: [11, 21.0.1] + java: [11, 21] include: - os: ubuntu-latest java: 17 @@ -82,6 +80,6 @@ jobs: run: | ./gradlew integTest yamlRestTest - name: Multi Nodes Integration Testing - if: matrix.java == '21.0.1' + if: matrix.java == '21' run: | ./gradlew integTest -PnumNodes=3 diff --git a/.github/workflows/test_security.yml b/.github/workflows/test_security.yml index 1a67234e2..fafcec0fa 100644 --- a/.github/workflows/test_security.yml +++ b/.github/workflows/test_security.yml @@ -16,8 +16,7 @@ jobs: integ-test-with-security-linux: strategy: matrix: - # Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426 - java: [11, 17, 21.0.1] + java: [11, 17, 21] name: Run Security Integration Tests on Linux runs-on: ubuntu-latest