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
When using "container" and "service" sections in jobs, host names of containers are not resolved.
Containers host names should be resolved.
...but there are not, for example, ping command fail with message "bad address 'host1'".
name: Test on: push jobs: job1: runs-on: ubuntu-latest container: image: alpine:latest services: host1: image: alpine:latest steps: - run: ping -c 1 host1
Run the workflow above
[Test/job1] 🚀 Start image=alpine:latest [Test/job1] 🐳 docker pull image=alpine:latest platform= username= forcePull=false [Test/job1] 🐳 docker create image=alpine:latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[] [Test/job1] 🐳 docker run image=alpine:latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[] [Test/job1] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir= [Test/job1] ⭐ Run ping -c 1 host1 [Test/job1] 🐳 docker exec cmd=[sh -e -c /home/befe/dev/github-sandbox.SUPPR/workflow/0] user= workdir= | ping: bad address 'host1' [Test/job1] ❌ Failure - ping -c 1 host1 Error: exit with `FAILURE`: 1
The text was updated successfully, but these errors were encountered:
duplicate of #173
Sorry, something went wrong.
No branches or pull requests
When using "container" and "service" sections in jobs, host names of containers are not resolved.
System information
Expected behaviour
Containers host names should be resolved.
Actual behaviour
...but there are not,
for example, ping command fail with message "bad address 'host1'".
Workflow
Steps to reproduce
Run the workflow above
act output
The text was updated successfully, but these errors were encountered: