actions / checkout

Action for checking out a repo
https://github.com/features/actions
MIT License
5.93k stars 1.76k forks source link

Failed to Download #948

Open delyy56 opened 2 years ago

delyy56 commented 2 years ago

Hello! I got this error today:

Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
Error: Can't use 'tar -xzf' extract archive file: /home/runner/work/_actions/_temp_0d0ebfeb-0090-4061-a73c-ca946ec0f57d/e3fb9764-f0ee-4e0d-bfa6-df3e8[32](https://github.com/lalalilo/data-transformation/actions/runs/3196280247/jobs/5218206995#step:1:36)f0d2c.tar.gz. return code: 2.
snazy commented 2 years ago

Same here - v3 fails - v3.1.0 seems to be okay. Started to fail within the last 20 minutes or so.

fmasuhr commented 2 years ago

I am experiencing the same issue in a lot of workflows. But this is non deterministic and sometimes working after a retry.

snazy commented 2 years ago

Maybe related to this one? https://github.com/actions/runner/issues/1923

pdcmoreira commented 2 years ago

Getting this aswell. Tried downloading it running the exact same command locally and I'm getting this:

$ tar -xzf actions-checkout-v3-0-g2541b12.tar.gz

gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now
muzfuz commented 2 years ago

We are seeing this same issue.

Seems related to https://github.com/actions/checkout/issues/815

doddi321 commented 2 years ago

Same problem as everyone else

kpocius commented 2 years ago

We're just an early warning system for GitHub issues https://www.githubstatus.com/incidents/gq1x0j8bv67v

cmuench commented 2 years ago

Can confirm that actions/checkout@v3.1.0 works fine.

cmuench commented 2 years ago

Possible a duplicate to #944

vladimir-kurganov commented 2 years ago

The previous version of actions/checkout v3.0.2 worked like a charm.

I used this quick fix for my GitHub workflows/pipelines, and solved this issue for myself by switching back to the stable v3.0.2.

I used git commit SHA that corresponds to the v3.0.2 version (as a bullet-proof solution).

 steps:
      - name: Checkout project
        uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b  # actions/checkout v3.0.2
muzfuz commented 2 years ago

It looks like the GitHub incident has been marked as resolved