Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/tuannvm/haproxy-mcp-server
go 1.24.2

require (
github.com/mark3labs/mcp-go v0.25.0
github.com/mark3labs/mcp-go v0.33.0
github.com/spf13/viper v1.20.1
)

Comment on lines 5 to 9
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Run go mod tidy – CI is failing on an untidy module

The dependency bump pulls new transitive requirements, but neither go.mod nor go.sum were re-tidied.
The pipeline already reports:

go.mod or go.sum is not tidy, run 'go mod tidy'

Execute go mod tidy locally and commit the resulting changes (likely including an updated go.sum) to restore reproducible builds and unblock CI.

🤖 Prompt for AI Agents
In go.mod around lines 5 to 9, the module dependencies are not tidy, causing CI
failures. Run the command 'go mod tidy' locally to clean up and update both
go.mod and go.sum files with any new or removed dependencies. After running the
command, commit the updated go.mod and go.sum files to ensure the module is tidy
and the CI pipeline passes.

Expand Down
Loading