You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We started to experience the following error this morning:
error: RPC failed; HTTP 400 curl 92 HTTP/2 stream 7 was not closed cleanly: CANCEL (err 8)
fatal: expected 'acknowledgments'
It occurs during the git fetch --tags step - I am able to drop into a tmate shell and run the same step without any errors. I noticed from the Dockerfile that dependencies, including git, is installed from node:20-alpine and may be different from the main GHA image (e.g. ubuntu-latest).
I made an attempt at converting the action to a composite one and install the dependencies through Nix instead and I managed to make that work. This is mainly just a tip for anyone else facing the same problem. The setup time is slower than Docker, but offers a bit more control on the version of the dependencies: martinjlowm/github-tag-action@1.70.0-nix
The text was updated successfully, but these errors were encountered:
We started to experience the following error this morning:
It occurs during the
git fetch --tags
step - I am able to drop into a tmate shell and run the same step without any errors. I noticed from the Dockerfile that dependencies, includinggit
, is installed fromnode:20-alpine
and may be different from the main GHA image (e.g. ubuntu-latest).I made an attempt at converting the action to a composite one and install the dependencies through Nix instead and I managed to make that work. This is mainly just a tip for anyone else facing the same problem. The setup time is slower than Docker, but offers a bit more control on the version of the dependencies:
martinjlowm/github-tag-action@1.70.0-nix
The text was updated successfully, but these errors were encountered: