Skip to content
Open
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 7
Copy link

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Fix failing pipeline: run go mod tidy and commit the resulting go.mod/go.sum updates

The CI error reports that the module files are not tidy after the version bump:

go.mod or go.sum is not tidy, run 'go mod tidy' to fix dependency file inconsistencies.

After upgrading github.com/mark3labs/mcp-go to v0.33.0 you must:

  1. Execute go mod tidy (and optionally go mod vendor if you vendor deps).
  2. Commit both the modified go.mod and the regenerated go.sum.

Until this is done the Build & Verify pipeline will keep failing.


🏁 Script executed:

#!/bin/bash
# Re-tidy module files and show resulting diff.
go mod tidy
git --no-pager diff go.mod go.sum

Length of output: 2532


Commit regenerated go.sum after running go mod tidy

Running go mod tidy updated your go.sum; please commit this change to resolve the CI failure.

• File to commit:

  • go.sum
diff --git a/go.sum b/go.sum
index 630077a..1b9e727 100644
--- a/go.sum
+++ b/go.sum
@@ -14,8 +14,8 @@
-github.com/mark3labs/mcp-go v0.25.0 h1:UUpcMT3L5hIhuDy7aifj4Bphw4Pfx1Rf8mzMXDe8RQw=
-github.com/mark3labs/mcp-go v0.25.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=
+github.com/mark3labs/mcp-go v0.33.0 h1:naxhjnTIs/tyPZmWUZFuG0lDmdA6sUyYGGf3gsHvTCc=
+github.com/mark3labs/mcp-go v0.33.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=

After committing this update, rerun the Build & Verify pipeline to confirm it passes.

🤖 Prompt for AI Agents
In the go.mod file around lines 5 to 7, after running `go mod tidy`, the go.sum
file was updated but not committed. To fix the CI failure, commit the updated
go.sum file to the repository and then rerun the Build & Verify pipeline to
ensure it passes.

)

Expand Down
Loading