-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore: update cosmos-sdk to 0.50.10 #155
Changes from 2 commits
4799c8e
40304b6
7345839
ba06fd5
68e660c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.23" | ||
check-latest: true | ||
- uses: technote-space/[email protected] | ||
id: git_diff | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.23" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tip Codebase Verification Go version update requires alignment across the repository The
Please update all Go version specifications to "1.23.1" to maintain consistency throughout the repository. Analysis chainApproved: Go version update, but note the discrepancy with PR title The update to Go version "1.23" is in line with Go's typical release pattern for major versions. However, there's a slight discrepancy with the PR title, which mentions version 1.23.1. To ensure consistency across the repository, please run the following script to check for any other Go version specifications: Please review the output to ensure all Go version specifications are consistent with this update. Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for Go version specifications across the repository
# Search for Go version specifications in various file types
echo "Searching for Go version specifications:"
rg --type yaml --type go --type mod '(?i)go-version|go [0-9]+\.[0-9]+' -g '!vendor'
# Search for Dockerfile GO version specifications
echo "Searching for Go version in Dockerfiles:"
rg --type dockerfile '(?i)FROM golang:[0-9]+\.[0-9]+' -g '!vendor'
Length of output: 399 Script: #!/bin/bash
# Description: Check for Go version specifications across the repository with corrected file types
# Search for Go version specifications in YAML, Go, and go.mod files
echo "Searching for Go version specifications:"
rg --type yaml --type go --type 'go.mod' '(?i)go-version|go [0-9]+\.[0-9]+' -g '!vendor'
# Search for Go version in Dockerfiles
echo "Searching for Go version in Dockerfiles:"
rg --type dockerfile '(?i)FROM golang:[0-9]+\.[0-9]+' -g '!vendor'
Length of output: 405 Script: #!/bin/bash
# Description: Check for Go version specifications across the repository with corrected file type handling
# Search for Go version specifications in YAML, Go, and go.mod files
echo "Searching for Go version specifications:"
rg '(?i)go-version|go [0-9]+\.[0-9]+' -g "*.yaml" -g "*.yml" -g "*.go" -g "go.mod" -g "!vendor"
# Search for Go version in Dockerfiles
echo "Searching for Go version in Dockerfiles:"
rg '(?i)FROM golang:[0-9]+\.[0-9]+' -g "Dockerfile*" -g "!vendor"
Length of output: 439 |
||
check-latest: true | ||
- uses: technote-space/[email protected] | ||
id: git_diff | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tip
Codebase Verification
Update Go version to the specific stable release and correct the cosmos-sdk version.
go-version: "1.23"
, but the latest stable version isgo1.23.1
as per the PR.cosmos-sdk
version ingo.mod
isv0.50.10
, which does not match the PR's specified1.50.10
. This appears to be a typo and should be corrected to ensure consistency.Analysis chain
Verify Go version and consider using a more specific version.
The Go version has been updated from 1.21 to 1.23, which is in line with the PR title. However, there are a couple of points to consider:
Consider updating the Go version to match the latest stable release or the specific version mentioned in the PR title. For example:
To verify the latest stable Go version, you can run the following script:
Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 3839
Script:
Length of output: 587
Script:
Length of output: 508