From 8903e43a9e01bc7bc74af04f72c23d1ce3d12328 Mon Sep 17 00:00:00 2001 From: Alex | Interchain Labs Date: Wed, 5 Mar 2025 14:17:59 -0500 Subject: [PATCH] chore: use go1.23 (#23897) --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/dependabot-update-all.yml | 2 +- .github/workflows/dependencies-review.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/pr-go-mod-tidy-mocks.yml | 4 +- .github/workflows/release-confix.yml | 2 +- .github/workflows/release-cosmovisor.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/sims-045.yml | 10 ++-- .github/workflows/sims-046.yml | 10 ++-- .github/workflows/sims-047.yml | 10 ++-- .github/workflows/sims-050.yml | 10 ++-- .github/workflows/sims-053.yml | 10 ++-- .github/workflows/sims-nightly.yml | 2 +- .github/workflows/sims.yml | 10 ++-- .github/workflows/test.yml | 56 ++++++++++----------- client/v2/go.mod | 2 - contrib/devtools/Dockerfile | 2 +- go.mod | 2 - math/go.mod | 2 +- simapp/go.mod | 2 - store/go.mod | 2 - systemtests/go.mod | 2 - tests/go.mod | 2 - tests/systemtests/go.mod | 2 - tools/cosmovisor/go.mod | 2 - x/circuit/go.mod | 2 - x/evidence/go.mod | 2 - x/feegrant/go.mod | 2 - x/nft/go.mod | 2 - x/upgrade/go.mod | 2 - 32 files changed, 71 insertions(+), 97 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc1881a4df..a5df99c0bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: install aarch64-gcc if: matrix.go-arch == 'arm64' diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5a81ed2685..3115d082cf 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dependabot-update-all.yml b/.github/workflows/dependabot-update-all.yml index 489b197711..1b11841ebb 100644 --- a/.github/workflows/dependabot-update-all.yml +++ b/.github/workflows/dependabot-update-all.yml @@ -26,7 +26,7 @@ jobs: token: "${{ steps.app-token.outputs.token }}" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Extract updated dependency id: deps diff --git a/.github/workflows/dependencies-review.yml b/.github/workflows/dependencies-review.yml index 40e6621115..99886c5a69 100644 --- a/.github/workflows/dependencies-review.yml +++ b/.github/workflows/dependencies-review.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: "Dependency Review" uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 61d209ced3..02778d2a9d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: technote-space/get-diff-action@v6.1.2 id: git_diff diff --git a/.github/workflows/pr-go-mod-tidy-mocks.yml b/.github/workflows/pr-go-mod-tidy-mocks.yml index ce10bc72a4..ad45ca9da1 100644 --- a/.github/workflows/pr-go-mod-tidy-mocks.yml +++ b/.github/workflows/pr-go-mod-tidy-mocks.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Run go mod tidy run: ./scripts/go-mod-tidy-all.sh @@ -40,7 +40,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Generate mocks run: make mocks diff --git a/.github/workflows/release-confix.yml b/.github/workflows/release-confix.yml index 6c295fe3c1..998c3814f7 100644 --- a/.github/workflows/release-confix.yml +++ b/.github/workflows/release-confix.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true # get 'v*.*.*' part from 'confix/v*.*.*' and save to $GITHUB_ENV - name: Set env diff --git a/.github/workflows/release-cosmovisor.yml b/.github/workflows/release-cosmovisor.yml index 395856cf76..1d9f14b7de 100644 --- a/.github/workflows/release-cosmovisor.yml +++ b/.github/workflows/release-cosmovisor.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true # get 'v*.*.*' part from 'cosmovisor/v*.*.*' and save to $GITHUB_ENV - name: Set env diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 936d57ea60..b5700ce0c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Unshallow run: git fetch --prune --unshallow diff --git a/.github/workflows/sims-045.yml b/.github/workflows/sims-045.yml index 4deb0e0dbf..e837bd3d0f 100644 --- a/.github/workflows/sims-045.yml +++ b/.github/workflows/sims-045.yml @@ -21,7 +21,7 @@ jobs: ref: "release/v0.45.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - run: make build @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Install runsim run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0 @@ -51,7 +51,7 @@ jobs: ref: "release/v0.45.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: @@ -70,7 +70,7 @@ jobs: ref: "release/v0.45.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: @@ -90,7 +90,7 @@ jobs: ref: "release/v0.45.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: diff --git a/.github/workflows/sims-046.yml b/.github/workflows/sims-046.yml index e8eef69cfc..515a76997f 100644 --- a/.github/workflows/sims-046.yml +++ b/.github/workflows/sims-046.yml @@ -21,7 +21,7 @@ jobs: ref: "release/v0.46.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - run: make build @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Install runsim run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0 @@ -52,7 +52,7 @@ jobs: ref: "release/v0.46.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: @@ -71,7 +71,7 @@ jobs: ref: "release/v0.46.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: @@ -90,7 +90,7 @@ jobs: ref: "release/v0.46.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: diff --git a/.github/workflows/sims-047.yml b/.github/workflows/sims-047.yml index d81f94028c..a438c4ac08 100644 --- a/.github/workflows/sims-047.yml +++ b/.github/workflows/sims-047.yml @@ -21,7 +21,7 @@ jobs: ref: "release/v0.47.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - run: make build @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Install runsim run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0 @@ -52,7 +52,7 @@ jobs: ref: "release/v0.47.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: @@ -71,7 +71,7 @@ jobs: ref: "release/v0.47.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: @@ -90,7 +90,7 @@ jobs: ref: "release/v0.47.x" - uses: actions/setup-go@v4 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v3 with: diff --git a/.github/workflows/sims-050.yml b/.github/workflows/sims-050.yml index b72451983a..fe80f92baa 100644 --- a/.github/workflows/sims-050.yml +++ b/.github/workflows/sims-050.yml @@ -21,7 +21,7 @@ jobs: ref: "release/v0.50.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - run: make build @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Install runsim run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0 @@ -52,7 +52,7 @@ jobs: ref: "release/v0.50.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v4 with: @@ -71,7 +71,7 @@ jobs: ref: "release/v0.50.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v4 with: @@ -90,7 +90,7 @@ jobs: ref: "release/v0.50.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - uses: actions/cache@v4 with: diff --git a/.github/workflows/sims-053.yml b/.github/workflows/sims-053.yml index f93572af01..412b5f3f91 100644 --- a/.github/workflows/sims-053.yml +++ b/.github/workflows/sims-053.yml @@ -23,7 +23,7 @@ jobs: ref: "release/v0.53.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - run: make build @@ -37,7 +37,7 @@ jobs: ref: "release/v0.53.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-import-export run: | @@ -53,7 +53,7 @@ jobs: ref: "release/v0.53.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-after-import run: | @@ -69,7 +69,7 @@ jobs: ref: "release/v0.53.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-nondeterminism run: | @@ -85,7 +85,7 @@ jobs: ref: "release/v0.53.x" - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-multi-seed-short run: | diff --git a/.github/workflows/sims-nightly.yml b/.github/workflows/sims-nightly.yml index f29c75a341..ec4b106b5f 100644 --- a/.github/workflows/sims-nightly.yml +++ b/.github/workflows/sims-nightly.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-multi-seed-long env: diff --git a/.github/workflows/sims.yml b/.github/workflows/sims.yml index 95d4082f60..59dc62b0c6 100644 --- a/.github/workflows/sims.yml +++ b/.github/workflows/sims.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - run: make build @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-import-export run: | @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-after-import run: | @@ -61,7 +61,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-nondeterminism run: | @@ -75,7 +75,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: test-sim-multi-seed-short run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e3ce73654..5211564b9c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true - name: Create a file with all core Cosmos SDK pkgs run: go list ./... > pkgs.txt @@ -55,7 +55,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: go.sum @@ -89,7 +89,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: go.sum @@ -160,7 +160,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: go.sum @@ -193,7 +193,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: client/v2/go.sum @@ -216,7 +216,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: core/go.sum @@ -330,7 +330,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" cache: true cache-dependency-path: schema/testing/go.sum - uses: technote-space/get-diff-action@v6.1.2 @@ -352,7 +352,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: collections/go.sum @@ -375,7 +375,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: tools/cosmovisor/go.sum @@ -398,7 +398,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: tools/confix/go.sum @@ -421,7 +421,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: store/go.sum @@ -474,7 +474,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/tx/go.sum @@ -497,7 +497,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/nft/go.sum @@ -520,7 +520,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/circuit/go.sum @@ -543,7 +543,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/distribution/go.sum @@ -566,7 +566,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/protocolpool/go.sum @@ -589,7 +589,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/feegrant/go.sum @@ -612,7 +612,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/evidence/go.sum @@ -635,7 +635,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/upgrade/go.sum @@ -658,7 +658,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/group/go.sum @@ -681,7 +681,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/gov/go.sum @@ -704,7 +704,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/slashing/go.sum @@ -727,7 +727,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/staking/go.sum @@ -750,7 +750,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/authz/go.sum @@ -773,7 +773,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/bank/go.sum @@ -796,7 +796,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/mint/go.sum @@ -819,7 +819,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/epochs/go.sum @@ -842,7 +842,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24" + go-version: "1.23" check-latest: true cache: true cache-dependency-path: x/consensus/go.sum diff --git a/client/v2/go.mod b/client/v2/go.mod index c686845226..8674b0481c 100644 --- a/client/v2/go.mod +++ b/client/v2/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/client/v2 go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/core v0.11.0 diff --git a/contrib/devtools/Dockerfile b/contrib/devtools/Dockerfile index 3aac7a1379..59a32de26b 100644 --- a/contrib/devtools/Dockerfile +++ b/contrib/devtools/Dockerfile @@ -3,7 +3,7 @@ # docker run --rm -v $(pwd):/workspace --workdir /workspace cosmossdk-proto sh ./scripts/protocgen.sh FROM bufbuild/buf:1.50.0 AS builder -FROM golang:1.24-alpine +FROM golang:1.23-alpine RUN apk add --no-cache \ nodejs \ diff --git a/go.mod b/go.mod index fba0fa4e9a..b05481437d 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,5 @@ go 1.23.0 -toolchain go1.24.0 - module github.com/cosmos/cosmos-sdk require ( diff --git a/math/go.mod b/math/go.mod index 79f281762b..da5bfd9ec7 100644 --- a/math/go.mod +++ b/math/go.mod @@ -2,7 +2,7 @@ module cosmossdk.io/math go 1.23 -toolchain go1.24.0 +toolchain go1.23.0 require ( cosmossdk.io/errors v1.0.1 diff --git a/simapp/go.mod b/simapp/go.mod index 3f6c666137..afce48c8d2 100644 --- a/simapp/go.mod +++ b/simapp/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/simapp go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/client/v2 v2.0.0-beta.5.0.20241121152743-3dad36d9a29e diff --git a/store/go.mod b/store/go.mod index 1d3015a9a3..757c776a75 100644 --- a/store/go.mod +++ b/store/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/store go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/errors v1.0.1 cosmossdk.io/log v1.5.0 diff --git a/systemtests/go.mod b/systemtests/go.mod index 72b103c5a8..7724d6ef41 100644 --- a/systemtests/go.mod +++ b/systemtests/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/systemtests go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/math v1.5.0 github.com/cometbft/cometbft v0.38.17 diff --git a/tests/go.mod b/tests/go.mod index fb7676fa2a..ef5154784c 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -2,8 +2,6 @@ module github.com/cosmos/cosmos-sdk/tests go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/core v0.11.1 diff --git a/tests/systemtests/go.mod b/tests/systemtests/go.mod index 2248c15e1f..09958ed7f8 100644 --- a/tests/systemtests/go.mod +++ b/tests/systemtests/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/tests/systemtests go 1.23.0 -toolchain go1.24.0 - replace ( cosmossdk.io/api => ../../api cosmossdk.io/systemtests => ../../systemtests diff --git a/tools/cosmovisor/go.mod b/tools/cosmovisor/go.mod index 9147dd42b2..a37e9e1367 100644 --- a/tools/cosmovisor/go.mod +++ b/tools/cosmovisor/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/tools/cosmovisor go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/log v1.5.0 cosmossdk.io/x/upgrade v0.1.4 diff --git a/x/circuit/go.mod b/x/circuit/go.mod index 0619554d22..19c5a76b83 100644 --- a/x/circuit/go.mod +++ b/x/circuit/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/x/circuit go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/collections v0.4.0 diff --git a/x/evidence/go.mod b/x/evidence/go.mod index 05ed32ec8d..1259954682 100644 --- a/x/evidence/go.mod +++ b/x/evidence/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/x/evidence go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/collections v0.4.0 diff --git a/x/feegrant/go.mod b/x/feegrant/go.mod index ebc81ce690..8ffbc9acdb 100644 --- a/x/feegrant/go.mod +++ b/x/feegrant/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/x/feegrant go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/core v0.11.0 diff --git a/x/nft/go.mod b/x/nft/go.mod index 4af608bce4..70d8953ed3 100644 --- a/x/nft/go.mod +++ b/x/nft/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/x/nft go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/core v0.11.0 diff --git a/x/upgrade/go.mod b/x/upgrade/go.mod index e25ccab59c..6366863f80 100644 --- a/x/upgrade/go.mod +++ b/x/upgrade/go.mod @@ -2,8 +2,6 @@ module cosmossdk.io/x/upgrade go 1.23.0 -toolchain go1.24.0 - require ( cosmossdk.io/api v0.7.6 cosmossdk.io/core v0.11.0