SECURITY ERROR still occurs when I Compile

Hi, everyone
When I tried the answer in following link, SECURITY ERROR still occurs.
https://forum.free5gc.org/t/compilation-encountered-security-error-when-install-free5gc-stage-3/1123

I reinstalled 1.14.4 version of GO, remove free5gc and git clone again. But the problem wasn’t solved.
image

All error messages are as follows:
image
image
image

Any suggestions?

Hi,
I tried to install free5gc again but I didn’t encounter this problem. You may try to remove free5gc and git clone by following instruction:

git clone --recursive -b v3.0.6 -j nproc https://github.com/free5gc/free5gc.git`

and cd free5gc try to make it.
If you still occur the same error, the reason may be amf’s go.sum and go.mod are mismatch.
Please cd NFs/amf and remove go.sum and go.mod, then use following instruction:

go mod init amf
go clean -modcache
go mod tidy

And cd free5gc/ try to make again.
Hope this way can help you!