Closed
Description
I'm not sure this is the best repo to report the issue, if it's the wrong place please close this :)
We've been using Github Actions successfully for a few days but starting today all our builds have started to fail at the setup-node
step with this error:
4m 57s
##[error]Node run failed with exit code 1
Run actions/setup-node@v1
with:
node-version: 12.x
always-auth: false
/bin/tar xzC /home/runner/work/_temp/83341e1a-c86d-4ddb-9963-ef01607f6e1e -f /home/runner/work/_temp/58fc8365-fe95-474e-ad3c-c5511594abdd
gzip: stdin: unexpected end of file
/bin/tar: Unexpected EOF in archive
/bin/tar: Unexpected EOF in archive
/bin/tar: Error is not recoverable: exiting now
##[error]The process '/bin/tar' failed with exit code 2
##[error]Node run failed with exit code 1
Attaching a screenshot for more clarity
You can see an example of a failed build here https://github.com/HabitRPG/habitica/pull/11474/checks?check_run_id=271716057.
The code of the workflow is the standard one that can be seen in the official docs
steps:
.....
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
....