[GH-ISSUE #705] Issue: Error when pulling Docker image #446

Closed
opened 2026-03-01 21:43:28 +03:00 by kerem · 1 comment
Owner

Originally created by @IgorGanapolsky on GitHub (May 25, 2021).
Original GitHub issue: https://github.com/nektos/act/issues/705

Act version

0.2.22

Expected behaviour

Should be able to run act

Actual behaviour

Error: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

Workflow and/or repository

name: Development Workflow

Triggers the workflow on push or pull request to develop branch

on:
push:
branches:
- 'develop'
pull_request:
branches:
- 'develop'

Where will they run

jobs:
build:

runs-on: ubuntu-latest
steps:
  - name: Setup Java
    uses: actions/setup-java@v1
    with:
      java-version: 11

  - name: Checkout Code
    uses: actions/checkout@v2

  - name: Grant execute permission for gradlew
    run: chmod +x gradlew

  - name: Build the project
    run: ./gradlew build

  - name: Run Unit Tests
    run: ./gradlew test

Steps to reproduce

Run the above GH Actions yml script.

Originally created by @IgorGanapolsky on GitHub (May 25, 2021). Original GitHub issue: https://github.com/nektos/act/issues/705 ## Act version 0.2.22 ## Expected behaviour Should be able to run `act` ## Actual behaviour > Error: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) ## Workflow and/or repository <details> name: Development Workflow # Triggers the workflow on push or pull request to develop branch on: push: branches: - 'develop' pull_request: branches: - 'develop' # Where will they run jobs: build: runs-on: ubuntu-latest steps: - name: Setup Java uses: actions/setup-java@v1 with: java-version: 11 - name: Checkout Code uses: actions/checkout@v2 - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build the project run: ./gradlew build - name: Run Unit Tests run: ./gradlew test </details> ## Steps to reproduce Run the above GH Actions yml script.
Author
Owner

@catthehacker commented on GitHub (May 25, 2021):

The issue seems to be with your Docker daemon rather than act.

https://github.com/moby/moby/issues/32270#issuecomment-340709035

<!-- gh-comment-id:848044242 --> @catthehacker commented on GitHub (May 25, 2021): The issue seems to be with your Docker daemon rather than `act`. https://github.com/moby/moby/issues/32270#issuecomment-340709035
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#446
No description provided.