From b2cac2932f7c03855da197ae9a7e020603384214 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 09:19:12 -0800 Subject: [PATCH] Add single version flag during bootstrap to fix version conflicts (#303) (#304) (cherry picked from commit 617881add5bca8ad46608fb50229256e5c12bb57) Signed-off-by: Ryan Liang Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- .github/workflows/cypress-e2e-reporting-test.yml | 2 +- .github/workflows/ftr-e2e-reporting-test.yml | 2 +- .github/workflows/lint.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cypress-e2e-reporting-test.yml b/.github/workflows/cypress-e2e-reporting-test.yml index c04040b3..3bd41931 100644 --- a/.github/workflows/cypress-e2e-reporting-test.yml +++ b/.github/workflows/cypress-e2e-reporting-test.yml @@ -117,7 +117,7 @@ jobs: - name: Boodstrap Opensearch Dashboards run: | - yarn osd bootstrap + yarn osd bootstrap --single-version=loose working-directory: OpenSearch-Dashboards - name: Run Opensearch Dashboards with Dashboards Reporting Plugin Installed diff --git a/.github/workflows/ftr-e2e-reporting-test.yml b/.github/workflows/ftr-e2e-reporting-test.yml index 0226d9d6..b4be4225 100644 --- a/.github/workflows/ftr-e2e-reporting-test.yml +++ b/.github/workflows/ftr-e2e-reporting-test.yml @@ -117,7 +117,7 @@ jobs: - name: Boodstrap Opensearch Dashboards run: | - yarn osd bootstrap + yarn osd bootstrap --single-version=loose working-directory: OpenSearch-Dashboards - name: Run Opensearch Dashboards with Dashboards Reporting Plugin Installed diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f58fdbee..02e8bb0f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -46,7 +46,7 @@ jobs: - name: Bootstrap the plugin working-directory: OpenSearch-Dashboards/plugins/${{ env.PLUGIN_NAME }} - run: yarn osd bootstrap + run: yarn osd bootstrap --single-version=loose - name: Get list of changed files using GitHub Action uses: lots0logs/gh-action-get-changed-files@2.2.2