-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
Error: The process '/usr/bin/git' failed with exit code 128 #417
Comments
We also experienced a similar issue yesterday in one of our private repositories:
This happened at around Jan 5, 2021, 7:05 PM PST. The issue seems to have gone away now, but I just wanted to add some extra information in case if it's useful. |
Doesn't appear to be fixed for me |
Without
|
I'm having the same issue |
same issue here |
did anyone reached a solution? |
Same here. Thanks! |
Seems to be an issue with the token handed out to the CI runner. When I used one generated manually and passed it via |
We were facing the same issue in private repos. We changed it to:
(which is release 2.3.3 https://github.com/actions/checkout/releases/tag/v2.3.3 ) What is root cause though? |
Same problem too. Just getting this now |
How to solve this problem? |
We also ran into this same issue with all workflows using the checkout action on one of private repos. The issue in our case was with the auth token that gets generated for each run that the checkout action uses by default was not working. We were able to workaround the issue by adding our own PAT as a repo secret and having the checkout action use our token instead:
There were not any changes on our end that would have caused this. The issue just seemingly popped up out of nowhere after working without a problem for months. At the very least the checkout action could do better error reporting in this case and also check the validity of the token before doing any privileged operations. |
same issue here folks, and also used PAT as a workaround 👍🏼 |
mine is weirder hah checkout completes successfully but produces an annotation, and clicking the annotation brings me to the logs page but doesn't focus any logs. looking at the logs, all looks normal EDIT: nevermind, mine is a problem that is my fault, disregard |
Same issue here for tokens generated for |
saw this today too. is it just me or is github looking and behaving more like microsoft devops everyday? |
I have had a support case open with Github Support for this since I initially ran into it last month and they reported that there is a pull request currently waiting to be merged to address this. They would not share any further details regarding the nature of the fix or a timeline for it to be merged/released. |
I get this error when trying to update docker container with |
according to similar error in fisheye docs "This ERROR is caused when you have an Environment Variable called GIT_EXEC_PATH." |
Hmm. Following this trail i found https://www.xspdf.com/resolution/59948454.html which seems like an aggregation of different forums threads about it. And it seems like error 128 can mean a lot of diferent things, including wrong SSH keys. |
No idea why but I was suddenly forced to use an access token to checkout this repo:
|
Hi there I'm facing this issue since this morning, but in my case I use Note
|
this worked for me, thank you! |
I added the "contents: read" scope to
|
Only works with permissions: write-all |
It looks like a permission issue. After adding the following snipppet of code, my code works well now. |
Earlier in elastic#3180 we added max-parallel:15 as an attempted workaround errors in the "actions/checkout@v2" (elastic#3179). We also changed to "actions/checkout@v3" in that change. actions/checkout#417 suggests that the update to v3 is sufficient to fix, so let's get the parallelism back. Refs: elastic#3179
confirmed that after adding the following to action file is working fine.
|
Permissions error for me in the .yml file |
That just started happening to my self-hosted runner, everything worked fine even without PAT token present.
Same action works fine in cloud based runner |
Ok, mine is resolved. Issue related to new Xcode 16.2 cmd tools and that git version. I reinstalled git using brew and it works magically again |
Couple of days back this action stopped working.
Seems similar to this issue: ad-m/github-push-action#76
The text was updated successfully, but these errors were encountered: