From cb82cc370e8bb23da7644c8a9ef659859887dade Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Tue, 19 Sep 2023 16:46:26 +0100 Subject: [PATCH] chore(deps): Bump go version to 1.21.1 (#2541) Bump Go version to 1.21.1 because QGB repo can't depend on celestia-app due to: ``` go: module github.com/celestiaorg/quantum-gravity-bridge/v2@v2.1.1 requires go >= 1.21.1; switching to go1.21.1 ``` --- .github/workflows/ci-release.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/test.yml | 2 +- README.md | 2 +- go.mod | 4 +--- 6 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index cc53324dd1..f77a456078 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -67,7 +67,7 @@ jobs: - run: git fetch --force --tags - uses: actions/setup-go@v4 with: - go-version: 1.21 + go-version: 1.21.1 # Generate the binaries and release - uses: goreleaser/goreleaser-action@v5 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bb8a8d5856..e521773af2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,7 +5,7 @@ on: workflow_call: env: - GO_VERSION: '1.21' + GO_VERSION: '1.21.1' jobs: golangci-lint: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 87324ae04b..87420c62c9 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -5,7 +5,7 @@ on: - cron: "0 6 * * *" env: - GO_VERSION: '1.21' + GO_VERSION: '1.21.1' jobs: e2e-tests: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 727722d76f..252af1b999 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ on: workflow_call: env: - GO_VERSION: '1.21' + GO_VERSION: '1.21.1' jobs: test-short: diff --git a/README.md b/README.md index bfc81db89a..828021db9c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ node | | | | ## Install -1. [Install Go](https://go.dev/doc/install) 1.21 +1. [Install Go](https://go.dev/doc/install) 1.21.1 1. Clone this repo 1. Install the celestia-app CLI diff --git a/go.mod b/go.mod index e62ae7c2bc..6f9b420576 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/celestiaorg/celestia-app -go 1.21 - -toolchain go1.21.0 +go 1.21.1 require ( github.com/celestiaorg/nmt v0.20.0