Copilot commented on code in PR #208:
URL: https://github.com/apache/skywalking-rover/pull/208#discussion_r3419257321
##########
.github/workflows/compatibility.yaml:
##########
@@ -45,7 +45,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
- go-version: "1.25"
+ go-version: "1.26"
Review Comment:
Same issue as the main workflow: `actions/setup-go@v2` may not
recognize/support newer Go versions reliably. Upgrading `setup-go` and using a
patch-floating `go-version` like `\"1.26.x\"` would make this more robust.
##########
.github/workflows/rover.yaml:
##########
@@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
- go-version: "1.25"
+ go-version: "1.26"
Review Comment:
This workflow is still using `actions/setup-go@v2`. Older setup-go versions
may not support newer Go versions and can cause CI failures. Consider upgrading
to a newer major of `actions/setup-go` and (optionally) switching `go-version`
to a patch-floating form like `\"1.26.x\"` to pick up security/bugfix releases
automatically.
--
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]