Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 337471c38f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| module github.com/vigo/statoo/v2 | ||
|
|
||
| go 1.21 | ||
| go 1.25.5 |
There was a problem hiding this comment.
go directive points to unavailable toolchain
The go.mod now declares go 1.25.5, which forces the Go toolchain to download that exact release when run with Go’s auto toolchain mode. That version is not present in the base environment, and even a simple go env now fails with a download go1.25.5 ... Forbidden error, blocking any build or test. Please pin the go directive to a released toolchain that is actually available (or provide the toolchain locally) to keep the project buildable.
Useful? React with 👍 / 👎.
No description provided.