checkout
checkout copied to clipboard
Failed to Download
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.
Same here - v3
fails - v3.1.0
seems to be okay.
Started to fail within the last 20 minutes or so.
I am experiencing the same issue in a lot of workflows. But this is non deterministic and sometimes working after a retry.
Maybe related to this one? https://github.com/actions/runner/issues/1923
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
We are seeing this same issue.
Seems related to https://github.com/actions/checkout/issues/815
Same problem as everyone else
We're just an early warning system for GitHub issues https://www.githubstatus.com/incidents/gq1x0j8bv67v
Can confirm that actions/[email protected]
works fine.
Possible a duplicate to #944
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
It looks like the GitHub incident has been marked as resolved