You can check if the
go.mod
module name has changed to module X
.Expected go.mod
module your-app-module go 1.20 require(...)
The Problem
module X go 1.20 require ( ... ) require your-app-module v0.0.0-unpublished replace your-app-module => ./
So you can fix your
go.mod
file.It doesn’t fix my problem?
I understand your frustration. However, I can only reproduce that. If you have a reproducible project, let me check it for you. Please comment.