Skip to content

Commit

Permalink
Fixing usage of actions/setup-java@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Jul 15, 2024
1 parent b3594d4 commit 73d67e7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/best-practice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run tests
continue-on-error: true
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/junit4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run JUnit 4 Tests
working-directory: ./selenium-junit4-examples
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/real-devices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: RDC Native App Android
run: mvn test -pl appium/appium-app/appium-app-examples -Dtest=AndroidNativeAppTest -Dregion=eu
- name: RDC Native App IOS
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/selenium-cucumber-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/selenium-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run JUnit 5 tests
working-directory: ./selenium-examples
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/testng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run testng tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand Down

0 comments on commit 73d67e7

Please sign in to comment.