i'm running
go version go1.20.5 linux/amd64
when I attempt to run 'go list' to find any updated to dependant
modules, it fails.
go list -m -u all
go: updates to go.sum needed, disabled by -mod=readonly
I've checked, and my go.mod and go.sum files are 777
-rwxrwxrwx 1 pfarrell pfarrell 408 Oct 1 10:37 go.mod*
-rwxrwxrwx 1 pfarrell pfarrell 3025 Oct 1 10:37 go.sum*
What am I doing wrong?
How do I get a list of updated modules?
thanks
pat