Skip to content

Commit d2d78a7

Browse files
authored
chore: stop using microsoft/playwright-github-action@v1 (#1698)
1 parent 6e66ee7 commit d2d78a7

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: actions/checkout@v2
22-
- uses: microsoft/playwright-github-action@v1
2322
- name: Set up JDK 1.8
2423
uses: actions/setup-java@v2
2524
with:
@@ -31,7 +30,7 @@ jobs:
3130
- name: Build & Install
3231
run: mvn -B install -D skipTests --no-transfer-progress
3332
- name: Install browsers
34-
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml
33+
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml --no-transfer-progress
3534
- name: Run tests
3635
run: mvn test --no-transfer-progress --fail-at-end -D org.slf4j.simpleLogger.showDateTime=true -D org.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss
3736
env:
@@ -65,7 +64,6 @@ jobs:
6564
runs-on: ${{ matrix.os }}
6665
steps:
6766
- uses: actions/checkout@v2
68-
- uses: microsoft/playwright-github-action@v1
6967
- name: Install Media Pack
7068
if: matrix.os == 'windows-latest'
7169
shell: powershell
@@ -81,7 +79,7 @@ jobs:
8179
- name: Build & Install
8280
run: mvn -B install -D skipTests --no-transfer-progress
8381
- name: Install browsers
84-
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml
82+
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml --no-transfer-progress
8583
- name: Install MS Edge
8684
if: matrix.browser-channel == 'msedge' && matrix.os == 'macos-latest'
8785
shell: bash
@@ -101,7 +99,6 @@ jobs:
10199
runs-on: ubuntu-latest
102100
steps:
103101
- uses: actions/checkout@v2
104-
- uses: microsoft/playwright-github-action@v1
105102
- name: Set up JDK 21
106103
uses: actions/setup-java@v2
107104
with:
@@ -113,7 +110,7 @@ jobs:
113110
- name: Build & Install
114111
run: mvn -B install -D skipTests --no-transfer-progress
115112
- name: Install browsers
116-
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml
113+
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml --no-transfer-progress
117114
- name: Run tests
118115
run: mvn test --no-transfer-progress --fail-at-end
119116
env:

.github/workflows/verify_api.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v2
23-
- uses: microsoft/playwright-github-action@v1
2423
- name: Download drivers
2524
run: scripts/download_driver.sh
2625
- name: Regenerate APIs
2726
run: scripts/generate_api.sh
2827
- name: Build & Install
2928
run: mvn -B install -D skipTests --no-transfer-progress
3029
- name: Install browsers
31-
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml
30+
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps" -f playwright/pom.xml --no-transfer-progress
3231
- name: Update browser versions in README
3332
run: scripts/update_readme.sh
3433
- name: Verify API is up to date

0 commit comments

Comments
 (0)