Copilot commented on code in PR #183: URL: https://github.com/apache/skywalking-swck/pull/183#discussion_r2963890260
########## adapter/go.mod: ########## @@ -1,6 +1,6 @@ module github.com/apache/skywalking-swck/adapter Review Comment: This PR updates the Go version directive in adapter/go.mod to 1.25.8 to address stdlib CVEs, but the repo still has another module pinned to 1.25.5 (operator/go.mod). If the patch-level Go bump is required for the CVE remediation, please bump the Go version consistently across all Go modules (or document why only the adapter module needs it). ```suggestion // This module explicitly targets Go 1.25.8 to pick up stdlib CVE fixes. // Other modules in this repo (e.g., operator) may remain on 1.25.5 if they // do not build binaries or exercise the affected stdlib code paths. ``` -- 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]
