diff --git a/.github/actions/bls/action.yml b/.github/actions/bls/action.yml index 97e8f5850..1d0a8aa16 100644 --- a/.github/actions/bls/action.yml +++ b/.github/actions/bls/action.yml @@ -15,7 +15,7 @@ runs: steps: - uses: actions/setup-go@v2 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v2 with: submodules: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6153ea597..25bdd5900 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: @@ -54,7 +54,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: @@ -79,7 +79,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: diff --git a/.github/workflows/check-generated.yml b/.github/workflows/check-generated.yml index 2746fc49b..4eb22bb40 100644 --- a/.github/workflows/check-generated.yml +++ b/.github/workflows/check-generated.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v4 @@ -49,7 +49,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v4 with: diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index f787abb39..4b555f9c6 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3.3.0 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a9c21e8c4..bc973ed18 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,7 +32,7 @@ jobs: submodules: true - uses: actions/setup-go@v5.0.1 with: - go-version: "^1.22.4" + go-version: "^1.22.5" - uses: technote-space/get-diff-action@v6 with: PATTERNS: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12a0e9449..50a8d0aee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - name: Build uses: goreleaser/goreleaser-action@v6 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5b877cf03..6bbaefbdd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v5.0.1 with: - go-version: "1.22.4" + go-version: "1.22.5" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: diff --git a/DOCKER/Dockerfile b/DOCKER/Dockerfile index 59fd10335..7e02a6148 100644 --- a/DOCKER/Dockerfile +++ b/DOCKER/Dockerfile @@ -5,7 +5,7 @@ # * image - creates final image of minimal size ARG ALIPNE_VERSION=3.19 -ARG GOLANG_VERSION=1.22.4 +ARG GOLANG_VERSION=1.22.5 ################################# # STAGE 1: install dependencies # ################################# diff --git a/README.md b/README.md index 9b50a6b7b..83feec800 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ to notify you of vulnerabilities and fixes in Tendermint Core. You can subscribe | Requirement | Notes | |-------------|------------------| -| Go version | Go 1.22.4 or higher | +| Go version | Go 1.22.5 or higher | ### Install diff --git a/docs/tutorials/go-built-in.md b/docs/tutorials/go-built-in.md index 385517084..3043933e4 100644 --- a/docs/tutorials/go-built-in.md +++ b/docs/tutorials/go-built-in.md @@ -596,7 +596,7 @@ This will populate the `go.mod` with a release number followed by a hash for Ten ```go module github.com//kvstore -go 1.22.4 +go 1.22.5 require ( github.com/dgraph-io/badger/v3 v3.2103.2 diff --git a/docs/tutorials/go.md b/docs/tutorials/go.md index 82c5cc339..ec6ba0c58 100644 --- a/docs/tutorials/go.md +++ b/docs/tutorials/go.md @@ -454,7 +454,7 @@ This will populate the `go.mod` with a release number followed by a hash for Ten ```go module github.com//kvstore -go 1.22.4 +go 1.22.5 require ( github.com/dgraph-io/badger/v3 v3.2103.2 diff --git a/go.mod b/go.mod index f995ba8d7..da806d9e2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/dashpay/tenderdash -go 1.22.4 +go 1.22.5 require ( github.com/BurntSushi/toml v1.4.0 diff --git a/test/e2e/docker/Dockerfile b/test/e2e/docker/Dockerfile index b5604edc7..955394ce4 100644 --- a/test/e2e/docker/Dockerfile +++ b/test/e2e/docker/Dockerfile @@ -1,6 +1,6 @@ ## Stage 1 and 2 is copied from /DOCKER/Dockerfile ARG ALIPNE_VERSION=3.19 -ARG GOLANG_VERSION=1.22.4 +ARG GOLANG_VERSION=1.22.5 ################################# # STAGE 1: install dependencies # ################################# diff --git a/test/fuzz/README.md b/test/fuzz/README.md index 4508553bc..3523cf5e7 100644 --- a/test/fuzz/README.md +++ b/test/fuzz/README.md @@ -1,7 +1,7 @@ # fuzz Fuzzing for various packages in Tendermint using the fuzzing infrastructure included in -Go 1.22.4. +Go 1.22.5. Inputs: