Upgrade go version in go.mod #4

Merged
phil merged 1 commit from ft/go into main 2026-05-17 12:46:11 +02:00
Collaborator
No description provided.
phil self-assigned this 2026-05-17 12:44:58 +02:00
Upgrade go version in go.mod
All checks were successful
ci/woodpecker/pr/0-check Pipeline was successful
ci/woodpecker/pr/10-pr-review Pipeline was successful
d7809d5646
Collaborator

Summary: Upgrade go directive from 1.24.2 to 1.26.3 in go.mod.

Issues:

🔴 CRITICAL go.mod:3 - Invalid Go version specified

Go 1.26.3 does not exist. As of current stable releases, Go 1.23.x is the latest series. Go 1.24.x would be expected around early 2025, and Go 1.26.x would be much further in the future. This change will cause build failures with error: "build failed: go: go.mod requires go >= 1.26.3, but build is using go 1.XX.X".

⚠️ MEDIUM go.mod:3 - Large version jump without context

Upgrading from 1.24.2 to 1.26.3 skips two minor versions (1.25 and 1.26). This significant jump increases the risk of breaking changes. No PR description, testing results, or compatibility notes provided.

Recommendations:

💡 go.mod:3 - Use a valid Go version

Step 1: Check the latest stable Go release at https://go.dev/dl/
Step 2: Update the go directive to a released version (e.g., go 1.23.0 or later if available).
Step 3: Run go mod tidy and verify all dependencies compile successfully.

Score (Code Quality): 20/100

Result:

  • Rejected (blocking issues found)
**Summary:** Upgrade go directive from 1.24.2 to 1.26.3 in go.mod. **Issues:** <details> <summary>🔴 CRITICAL go.mod:3 - Invalid Go version specified</summary> > Go 1.26.3 does not exist. As of current stable releases, Go 1.23.x is the latest series. Go 1.24.x would be expected around early 2025, and Go 1.26.x would be much further in the future. This change will cause build failures with error: "build failed: go: go.mod requires go >= 1.26.3, but build is using go 1.XX.X". </details> <details> <summary>⚠️ MEDIUM go.mod:3 - Large version jump without context</summary> > Upgrading from 1.24.2 to 1.26.3 skips two minor versions (1.25 and 1.26). This significant jump increases the risk of breaking changes. No PR description, testing results, or compatibility notes provided. </details> **Recommendations:** <details> <summary>💡 go.mod:3 - Use a valid Go version</summary> > Step 1: Check the latest stable Go release at https://go.dev/dl/ > Step 2: Update the go directive to a released version (e.g., `go 1.23.0` or later if available). > Step 3: Run `go mod tidy` and verify all dependencies compile successfully. </details> **Score (Code Quality):** 20/100 **Result:** - ❌ Rejected (blocking issues found)
phil merged commit 915890c052 into main 2026-05-17 12:46:11 +02:00
phil deleted branch ft/go 2026-05-17 12:46:11 +02:00
Sign in to join this conversation.
No description provided.