We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 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
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
@robacarp Thanks for the valuable report, I will test it with container: image: ruby
container: image: ruby
No branches or pull requests
Fails with following error:
Action usage:
The text was updated successfully, but these errors were encountered: