Closed leongross closed 1 week ago
I came here because I'm getting the exact same error in a workflow that's triggered by a cron schedule. The run that ran 1 hour earlier was successful using the same git fetch
command and sha. Could this be on GitHub's server side?
/edit: just found this: https://www.githubstatus.com/incidents/q3xqwmcxzkqq
Appears to be a symptom of this incident: https://www.githubstatus.com/incidents/q3xqwmcxzkqq
The issue seems to be resolved, but it seems as if there was some race condition that should be fixed, so I keep this issue open.
👋 This was due to a GitHub status incident and not directly an issue with this action or how it functions.
But can you explain how the command line that was executed was changed? This seems to have the potential to execute arbitrary commands on the runner which in fact could be considered a security risk.
@leongross these are commands run on the remote Git server, not on the runner itself.
The status incident has more details
The root cause was traced to a bug in a build script for a component that runs on the file servers that host git repository data. The build script incurred an error that did not cause the overall build process to fail, resulting in a faulty set of artifacts being deployed to production.
@leongross see also https://github.com/orgs/community/discussions/139743#discussioncomment-10959902
I see, thank you for clarifying.
In the
u-root
project we use (presumably) the latest version ofcheckout@v4
in our CI. The CI failed once with the following error:After re-running the ci (more precisely
git commit --amend --no-edit && git push -f
)