Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails for latest stable Chrome 119 (119.0.6045.105) #243

Open
kunalherkal opened this issue Nov 1, 2023 · 2 comments
Open

Fails for latest stable Chrome 119 (119.0.6045.105) #243

kunalherkal opened this issue Nov 1, 2023 · 2 comments

Comments

@kunalherkal
Copy link

Fails with following error:

CHROME_VERSION=119
VERSION=119.0.6045.105
Downloading https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json...
Installing ChromeDriver 119.0.6045.105 for linux64
Downloading https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chromedriver-linux64.zip
https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chromedriver-linux64.zip...
Error: The process '/runner/_work/_actions/nanasess/setup-chromedriver/v2/lib/setup-chromedriver.sh' failed with exit code 3

Action usage:

    - name: Set up chromedriver
      uses: nanasess/setup-chromedriver@v2
@kunalherkal kunalherkal changed the title Fails for latest stable Chrome (119.0.6045.105) Fails for latest stable Chrome 119 (119.0.6045.105) Nov 1, 2023
@robacarp
Copy link

I ran into this issue when running my job with a container definition like this:

jobs:
  test:
    runs-on: ubuntu-latest
    container:
      image: ruby:3.2.2

But when I ran it without the container and installed ruby manually, it had no problem:

jobs:
  test:
    runs-on: ubuntu-latest
    container:
      image: ruby:3.2.2
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true

I suspect the issue is, the ruby container is missing some dependency that the scripts herein depend upon.

@nanasess
Copy link
Owner

@robacarp Thanks for the valuable report, I will test it with container: image: ruby

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants