Copilot commented on code in PR #263: URL: https://github.com/apache/skywalking-satellite/pull/263#discussion_r3418533547
########## test/e2e/base/satellite/Dockerfile: ########## @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.25 +FROM golang:1.26 Review Comment: `FROM golang:1.26` is a floating tag, which can drift to newer patch releases and potentially trigger Go toolchain auto-downloads (since `go.mod` pins `toolchain go1.26.4`) or introduce non-reproducible e2e images. Consider pinning the e2e base image to the same patch version used elsewhere. -- 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]
