From 485bdd7827ec810295930508c0ed7f44dd89059a Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 17:44:01 -0700 Subject: [PATCH] [AUTO] Increment version to 2.13.1-SNAPSHOT (#644) * Increment version to 2.13.1-SNAPSHOT Signed-off-by: opensearch-ci-bot * Downgrade macos CI to non-aarch64 runner Signed-off-by: Daniel Widdis * Allow lower NodeJS version on GH runners for security test (#765) Signed-off-by: Daniel Widdis --------- Signed-off-by: opensearch-ci-bot Signed-off-by: Daniel Widdis Co-authored-by: opensearch-ci-bot Co-authored-by: Daniel Widdis --- .github/workflows/CI.yml | 6 +++--- .github/workflows/test_security.yml | 3 +++ build.gradle | 2 +- 3 files changed, 7 insertions(+), 4 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 }} 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 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('-')