Copilot commented on code in PR #233: URL: https://github.com/apache/skywalking-satellite/pull/233#discussion_r2963890561
########## go.mod: ########## @@ -1,6 +1,6 @@ module github.com/apache/skywalking-satellite -go 1.25 +go 1.25.8 Review Comment: The `go` directive in go.mod only accepts a major.minor version (e.g., `1.25`), not a patch version. Using `go 1.25.8` will cause `go mod tidy` / builds to fail with an invalid Go version. Keep `go 1.25` and, if you need to pin the patch level for the CVE fix, add a `toolchain go1.25.8` directive (and/or align CI/Docker to that toolchain). ```suggestion go 1.25 toolchain go1.25.8 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
