Skip to content

chore: update to Go 1.24.6 [IDE-1377] #400

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ orbs:
base_image: &base_image
resource_class: small
docker:
- image: cimg/go:1.22
- image: cimg/go:1.24.5
Copy link

Choose a reason for hiding this comment

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

Bug: Go Version Mismatch Causes CI/Local Discrepancy

Go version mismatch: go.mod specifies Go 1.24.6, but the CircleCI configuration (.circleci/config.yml) uses cimg/go:1.24.5. This inconsistency can lead to divergent build and test behavior between CI and local development environments.

Additional Locations (1)
Fix in Cursor Fix in Web

Copy link
Contributor Author

Choose a reason for hiding this comment

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

As mentioned in the commit message, the 1.24.6 tag is not out yet.


# Define the jobs we want to run for this project
jobs:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/snyk/go-application-framework

go 1.24
go 1.24.6
Copy link

Choose a reason for hiding this comment

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

Bug: Go Module Versioning Error

The go directive in go.mod was incorrectly updated to go 1.24.6. The go directive must only specify the major.minor version (e.g., go 1.24), as it does not accept patch numbers. This violates Go module conventions and may cause issues with Go tooling.

Fix in Cursor Fix in Web


require (
github.com/charmbracelet/lipgloss v0.10.0
Expand Down