Skip to content

Commit

Permalink
Fix Appium healthcheck URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Martinez committed May 24, 2024
1 parent 47642d2 commit 34fc4eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Run_appium_android_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
id: AppiumStatus
uses: fjogeleit/http-request-action@master
with:
url: 'http://0.0.0.0:4723/wd/hub/status'
url: 'http://127.0.0.1:4723/status'
method: 'GET'
- name: Show Response
run: echo "${{ steps.AppiumStatus.outputs.response }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Run_appium_ios_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
id: AppiumStatus
uses: fjogeleit/http-request-action@master
with:
url: 'http://0.0.0.0:4723/wd/hub/status'
url: 'http://127.0.0.1:4723/status'
method: 'GET'
- name: Show Response
run: echo "${{ steps.AppiumStatus.outputs.response }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Run_desktop_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
id: AppiumStatus
uses: fjogeleit/http-request-action@master
with:
url: 'http://0.0.0.0:4723/wd/hub/status'
url: 'http://127.0.0.1:4723/status'
method: 'GET'
- name: Show Response
run: echo "${{ steps.AppiumStatus.outputs.response }}"
Expand Down

0 comments on commit 34fc4eb

Please sign in to comment.