From 50e21e7b837825ac2c5bee260c15fff79506d353 Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Sat, 20 Jan 2024 15:37:30 -0800 Subject: [PATCH] Work around JDK 21.0.2 bug impacting scaling executors Signed-off-by: Daniel Widdis --- .github/workflows/CI.yml | 6 ++++-- .github/workflows/test_security.yml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 167d0eec2..14c2ca25d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -35,7 +35,8 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - java: [11, 21] + # Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426 + java: [11, 21.0.1] include: - os: ubuntu-latest java: 17 @@ -62,7 +63,8 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - java: [11, 21] + # Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426 + java: [11, 21.0.1] include: - os: ubuntu-latest java: 17 diff --git a/.github/workflows/test_security.yml b/.github/workflows/test_security.yml index fafcec0fa..1a67234e2 100644 --- a/.github/workflows/test_security.yml +++ b/.github/workflows/test_security.yml @@ -16,7 +16,8 @@ jobs: integ-test-with-security-linux: strategy: matrix: - java: [11, 17, 21] + # Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426 + java: [11, 17, 21.0.1] name: Run Security Integration Tests on Linux runs-on: ubuntu-latest