Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches:
- "*"
env:
OPENSEARCH_DASHBOARDS_VERSION: 'main'
OPENSEARCH_DASHBOARDS_VERSION: 'feature/node-2x'

jobs:
Get-CI-Image-Tag:
Expand All @@ -28,13 +28,13 @@ jobs:

steps:
- name: Checkout OpenSearch Dashboards
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: opensearch-project/OpenSearch-Dashboards
ref: ${{ env.OPENSEARCH_DASHBOARDS_VERSION }}
path: OpenSearch-Dashboards
- name: Checkout Anomaly Detection OpenSearch Dashboards plugin
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: OpenSearch-Dashboards/plugins/anomaly-detection-dashboards-plugin
- name: Bootstrap / build / unit test the plugin
Expand All @@ -61,7 +61,7 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
run: git config --system core.longpaths true
- name: Checkout OpenSearch Dashboards
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: opensearch-project/OpenSearch-Dashboards
ref: ${{ env.OPENSEARCH_DASHBOARDS_VERSION }}
Expand All @@ -81,7 +81,7 @@ jobs:
- run: node -v
- run: yarn -v
- name: Checkout Anomaly Detection OpenSearch Dashboards plugin
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: OpenSearch-Dashboards/plugins/anomaly-detection-dashboards-plugin
- name: Bootstrap the plugin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-check-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: lychee Link Checker
id: lychee
uses: lycheeverse/lychee-action@master
Expand Down
16 changes: 7 additions & 9 deletions .github/workflows/remote-integ-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ env:
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
OPENSEARCH_DASHBOARDS_VERSION: 'main'
OPENSEARCH_DASHBOARDS_VERSION: 'feature/node-2x'
OPENSEARCH_DASHBOARDS_FTR_VERSION: 'main'
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_PLUGIN_VERSION: '3.0.0.0-alpha1'

Expand All @@ -27,7 +28,7 @@ jobs:
java-version: ${{ matrix.jdk }}

- name: Checkout Anomaly-Detection
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: anomaly-detection
repository: opensearch-project/anomaly-detection
Expand All @@ -46,18 +47,15 @@ jobs:
shell: bash

- name: Checkout OpenSearch Dashboards
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: OpenSearch-Dashboards
repository: opensearch-project/OpenSearch-Dashboards
ref: ${{ env.OPENSEARCH_DASHBOARDS_VERSION }}
fetch-depth: 0
filter: |
cypress
test

- name: Checkout AD in OpenSearch Dashboards Plugins Dir
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: OpenSearch-Dashboards/plugins/anomaly-detection-dashboards-plugin

Expand Down Expand Up @@ -132,11 +130,11 @@ jobs:
shell: bash

- name: Checkout Dashboards Functional Test Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: opensearch-dashboards-functional-test
repository: opensearch-project/opensearch-dashboards-functional-test
ref: ${{ env.OPENSEARCH_DASHBOARDS_VERSION }}
ref: ${{ env.OPENSEARCH_DASHBOARDS_FTR_VERSION }}
fetch-depth: 0

- name: Install Cypress
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-binary-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set env
run: |
Expand Down
Loading