diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 2aa94d5fac..bbfc29719e 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ ubuntu-latest, macos-latest ] test-path: ${{fromJson(needs.pre-test.outputs.matrix)}} steps: - uses: actions/checkout@v4 @@ -40,6 +40,9 @@ jobs: with: go-version: "stable" + - name: Run Go Mod Tidy + run: go mod tidy + - name: Run Integration Tests env: GOTOOLCHAIN: local+path diff --git a/changelog.md b/changelog.md index 0dce3e6d3e..c53efb2e76 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ ## Unreleased +### Fixes + +- [#4793](https://github.com/ignite/cli/pull/4793) Use latest `bytedance/sonic` version to support Go 1.25. + ## [`v29.3.0`](https://github.com/ignite/cli/releases/tag/v29.3.0) ### Features diff --git a/ignite/templates/app/files/go.mod.plush b/ignite/templates/app/files/go.mod.plush index f3800dd889..0d05076796 100644 --- a/ignite/templates/app/files/go.mod.plush +++ b/ignite/templates/app/files/go.mod.plush @@ -9,6 +9,8 @@ replace ( github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // replace broken vanity url nhooyr.io/websocket => github.com/coder/websocket v1.8.7 + // force latest sonic version for Go 1.25 support + github.com/bytedance/sonic => github.com/bytedance/sonic v1.14.0 ) require (