Skip to content

Commit

Permalink
Merge pull request #6282 from dotani1111/dev/fix-chromedriver-version
Browse files Browse the repository at this point in the history
fix: GitHub Action failure with ChromeDriver version
  • Loading branch information
dotani1111 authored Sep 11, 2024
2 parents 404de17 + 97bd9d9 commit f0adfec
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Run chromedriver
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deny-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ jobs:
- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Prepare test
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ jobs:
- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Run chromedriver
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/e2e-test-throttling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ jobs:
- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Install fonts
run: sudo apt install fonts-ipafont fonts-ipaexfont
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ jobs:
- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Install fonts
run: sudo apt install fonts-ipafont fonts-ipaexfont
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/plugin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Run chromedriver
run: |
Expand Down Expand Up @@ -251,6 +254,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Run chromedriver
run: |
Expand Down Expand Up @@ -400,6 +406,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Run chromedriver
run: |
Expand Down Expand Up @@ -552,6 +561,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: Run chromedriver
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/vaddy-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: "VAddy: install"
working-directory: /tmp
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/vaddy-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定

- name: "VAddy: install"
working-directory: /tmp
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/vaddy/prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ runs:

- name: setup-chromedriver
uses: nanasess/setup-chromedriver@master
with:
# ChromeDriverのバージョンを指定
chromedriver-version: '127.0.6533.119' # 特定のバージョンを指定


- name: Install fonts
shell: bash
Expand Down

0 comments on commit f0adfec

Please sign in to comment.