Skip to content
Merged
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
16 changes: 7 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
module github.com/0xsequence/go-sequence

go 1.24.0

toolchain go1.24.2
go 1.25.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Update CI toolchain to satisfy new Go minimum

Raising the module directive to go 1.25.0 here makes the repo require Go 1.25+, but the test workflow is still pinned to go-version: 1.24.x in .github/workflows/test.yml (line 18), so CI environments that disable auto toolchain downloads (or cannot reach proxy.golang.org) will fail before running tests with a go.mod requires go >= 1.25.0 error. Please bump that workflow to 1.25.x (or use go-version-file) in the same change so the minimum version and CI runtime stay consistent.

Useful? React with 👍 / 👎.


// replace github.com/0xsequence/ethkit => ../ethkit

require (
github.com/0xsequence/ethkit v1.39.0
github.com/0xsequence/ethkit v1.43.0
github.com/0xsequence/go-ethauth v0.14.0
github.com/BurntSushi/toml v1.2.1
github.com/davecgh/go-spew v1.1.1
Expand All @@ -19,7 +17,7 @@ require (
github.com/spf13/cobra v1.10.1
github.com/stretchr/testify v1.11.1
go.uber.org/mock v0.6.0
golang.org/x/crypto v0.45.0
golang.org/x/crypto v0.49.0
)

require (
Expand Down Expand Up @@ -54,9 +52,9 @@ require (
github.com/supranational/blst v0.3.16 // indirect
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sync v0.18.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/net v0.51.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/text v0.35.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
24 changes: 12 additions & 12 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
go 1.24.0

toolchain go1.24.2
go 1.25.0

use (
.
Expand Down
14 changes: 14 additions & 0 deletions go.work.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading