-
Notifications
You must be signed in to change notification settings - Fork 657
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
Add workaround for "ConnectTimeoutException: connection timed out" on GitHub Actions #1605
Conversation
… GitHub Actions Sporadic failures are observed on GitHub Actions when running on Ubuntu 20.04 Related to actions/runner-images#3185
@lhotari 👋 since you noticed this issue 😄 |
@@ -19,6 +19,11 @@ jobs: | |||
|
|||
steps: | |||
- uses: actions/checkout@v2 | |||
- name: Update /etc/hosts file | |||
if: matrix.os == 'ubuntu-20.04' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we've determined that 18.04 is also affected, might as well use if: startsWith(matrix.os, 'ubuntu-')
wdyt?
source for syntax: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#startswith
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Here for completeness the same failure observed on Ubuntu 18.04 |
Hi @simonbasle and @violetagg , nice to meet again. :) The problem is that I'm not able to comment on the issue or edit the description (GitHub App showed the abilitity to edit the title, but it returned "permission denied"). I guess the only way to communicate with the maintainers is to create new issues. I added more information to the GitHub community discussion where the problem was reported. I mentioned that ubuntu-18.04 is also impacted (and possibly other VM types). Feel free to add more comments to the GitHub community discussion. |
Ah bummer! Thanks for trying, and for reporting that in the community discussion @lhotari 👍 |
@simonbasle Thanks for the review! |
Sporadic failures are observed on GitHub Actions when running on Ubuntu 20.04/18.04
Related to actions/runner-images#3185