From 7ed24abf4d4a686ba530b2b299938b313bb8caa2 Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Thu, 4 Apr 2024 00:08:25 +0000 Subject: [PATCH 1/3] Increment version to 2.13.1-SNAPSHOT Signed-off-by: opensearch-ci-bot --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 02b52f0f5..ec8756b2f 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ import java.nio.file.Paths buildscript { ext { - opensearch_version = System.getProperty("opensearch.version", "2.13.0-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "2.13.1-SNAPSHOT") buildVersionQualifier = System.getProperty("build.version_qualifier", "") isSnapshot = "true" == System.getProperty("build.snapshot", "true") version_tokens = opensearch_version.tokenize('-') From 3e453fd691c40ddcd659c9a8c30810220d4907d9 Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Mon, 19 Aug 2024 15:28:06 -0700 Subject: [PATCH 2/3] Downgrade macos CI to non-aarch64 runner Signed-off-by: Daniel Widdis --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5428b14ad..968da85e3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,7 +34,7 @@ jobs: needs: [spotless, javadoc] strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-13, windows-latest] java: [11, 21] include: - os: ubuntu-latest @@ -64,7 +64,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-13, windows-latest] java: [11, 21] include: - os: ubuntu-latest @@ -86,7 +86,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-13, windows-latest] java: [21] name: Multi-Node Integ Test JDK${{ matrix.java }}, ${{ matrix.os }} runs-on: ${{ matrix.os }} From 741a5f45d05a8d1eca2c037c8569fdc89ffd75dd Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Mon, 8 Jul 2024 13:22:58 -0700 Subject: [PATCH 3/3] Allow lower NodeJS version on GH runners for security test (#765) Signed-off-by: Daniel Widdis --- .github/workflows/test_security.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test_security.yml b/.github/workflows/test_security.yml index fafcec0fa..5ba0002a5 100644 --- a/.github/workflows/test_security.yml +++ b/.github/workflows/test_security.yml @@ -7,6 +7,9 @@ on: pull_request: types: [opened, synchronize, reopened] +env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + jobs: Get-CI-Image-Tag: uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@main