From dbe5cf856f558e17ec246364c758c3460960d598 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:50:33 +0100 Subject: [PATCH] build(deps): bump golang from 1.23 to 1.23.2 --- .github/actions/bls/action.yml | 2 +- .github/workflows/build.yml | 6 +++--- .github/workflows/check-generated.yml | 4 ++-- .github/workflows/e2e.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 2 +- DOCKER/Dockerfile | 2 +- README.md | 2 +- docs/tutorials/go-built-in.md | 2 +- docs/tutorials/go.md | 2 +- go.mod | 4 +--- test/e2e/docker/Dockerfile | 2 +- test/fuzz/README.md | 2 +- 14 files changed, 17 insertions(+), 19 deletions(-) diff --git a/.github/actions/bls/action.yml b/.github/actions/bls/action.yml index 442dc78b8..086757c92 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.23" + go-version: "1.23.2" - uses: actions/checkout@v2 with: submodules: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f256c3d8e..58bf607b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: @@ -54,7 +54,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: @@ -79,7 +79,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - 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 39eb0cf48..54471d1c3 100644 --- a/.github/workflows/check-generated.yml +++ b/.github/workflows/check-generated.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - uses: actions/checkout@v4 @@ -49,7 +49,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - uses: actions/checkout@v4 with: diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 470aa860a..328c341dd 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3.7.1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 27ff1c772..5644aeab1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,7 +32,7 @@ jobs: submodules: true - uses: actions/setup-go@v5.1.0 with: - go-version: "^1.23" + go-version: "^1.23.2" - uses: technote-space/get-diff-action@v6 with: PATTERNS: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 896d9429c..b531a0b37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - name: Build uses: goreleaser/goreleaser-action@v6 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 51ff8c768..7300760a4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/setup-go@v5.1.0 with: - go-version: "1.23" + go-version: "1.23.2" - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6 with: diff --git a/DOCKER/Dockerfile b/DOCKER/Dockerfile index 57b3b6b08..e9f49b5b3 100644 --- a/DOCKER/Dockerfile +++ b/DOCKER/Dockerfile @@ -5,7 +5,7 @@ # * image - creates final image of minimal size ARG ALPINE_VERSION=3.19 -ARG GOLANG_VERSION=1.23 +ARG GOLANG_VERSION=1.23.2 ################################# # STAGE 1: install dependencies # ################################# diff --git a/README.md b/README.md index 4f4ee8cfc..93db563b3 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ requirements if installing from source. | Requirement | Notes | |-------------|------------------| -| Go version | Go1.23 or higher | +| Go version | Go1.23.2 or higher | ## Versioning diff --git a/docs/tutorials/go-built-in.md b/docs/tutorials/go-built-in.md index 9048130e1..e694d8e95 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.23 +go 1.23.2 require ( github.com/dgraph-io/badger/v3 v3.2103.2 diff --git a/docs/tutorials/go.md b/docs/tutorials/go.md index 8ca6f23a8..034602cc2 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.23 +go 1.23.2 require ( github.com/dgraph-io/badger/v3 v3.2103.2 diff --git a/go.mod b/go.mod index 675e5f356..54f87581c 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/dashpay/tenderdash -go 1.23.1 - -toolchain go1.23.2 +go 1.23.2 require ( github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c diff --git a/test/e2e/docker/Dockerfile b/test/e2e/docker/Dockerfile index 6bc47707f..2ab51e21a 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.23 +ARG GOLANG_VERSION=1.23.2 ################################# # STAGE 1: install dependencies # ################################# diff --git a/test/fuzz/README.md b/test/fuzz/README.md index c0d141492..33921291b 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.23. +Go 1.23.2. Inputs: