Skip to content

Commit dd17feb

Browse files
committed
Directly changed admin password into admin in ci
Signed-off-by: Ryan Liang <[email protected]>
1 parent 31d9a2b commit dd17feb

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

.github/workflows/cypress-test-tenancy-disabled.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222

2323
steps:
24-
- id: random-password
25-
uses: peternied/random-name@v1
26-
2724
- name: Set up JDK
2825
uses: actions/setup-java@v1
2926
with:
@@ -53,7 +50,7 @@ jobs:
5350
opensearch-version: ${{ env.OPENSEARCH_VERSION }}
5451
plugin-name: ${{ env.PLUGIN_NAME }}
5552
setup-script-name: setup
56-
admin-password: ${{ steps.random-password.outputs.generated_name }}
53+
admin-password: admin
5754

5855
- name: Run Dashboard with Security Dashboards Plugin
5956
uses: ./.github/actions/install-dashboards

.github/workflows/cypress-test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ jobs:
2020
os: [ ubuntu-latest , windows-latest ]
2121
runs-on: ${{ matrix.os }}
2222

23-
steps:
24-
- id: random-password
25-
uses: peternied/random-name@v1
26-
23+
steps:
2724
- name: Set up JDK
2825
uses: actions/setup-java@v1
2926
with:
@@ -53,7 +50,7 @@ jobs:
5350
opensearch-version: ${{ env.OPENSEARCH_VERSION }}
5451
plugin-name: ${{ env.PLUGIN_NAME }}
5552
setup-script-name: setup
56-
admin-password: ${{ steps.random-password.outputs.generated_name }}
53+
admin-password: admin
5754

5855
- name: Run Dashboard with Security Dashboards Plugin
5956
uses: ./.github/actions/install-dashboards

.github/workflows/integration-test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
steps:
2020
- name: Checkout Branch
2121
uses: actions/checkout@v3
22-
23-
- id: random-password
24-
uses: peternied/random-name@v1
2522

2623
- name: Set up JDK
2724
uses: actions/setup-java@v1
@@ -67,7 +64,7 @@ jobs:
6764
opensearch-version: ${{ env.OPENSEARCH_VERSION }}
6865
plugin-name: ${{ env.PLUGIN_NAME }}
6966
setup-script-name: setup
70-
admin-password: ${{ steps.random-password.outputs.generated_name }}
67+
admin-password: admin
7168

7269
- id: install-dashboards
7370
uses: ./.github/actions/install-dashboards

0 commit comments

Comments
 (0)