From 3ddf196c240b4afaa6d97b7b58568d7e9e0a2148 Mon Sep 17 00:00:00 2001 From: Rootul P Date: Fri, 9 Aug 2024 14:27:08 -0400 Subject: [PATCH] chore(deps): upgrade to Go 1.22.6 (#3764) Motivated by https://github.com/celestiaorg/celestia-app/pull/3763 > go1.22.6 (released 2024-08-06) includes fixes to the go command, the compiler, the linker, the trace command, the covdata command, and the bytes, go/types, and os/exec packages. See the [Go 1.22.6 milestone](https://github.com/golang/go/issues?q=milestone%3AGo1.22.6+label%3ACherryPickApproved) on our issue tracker for details. Ref: https://go.dev/doc/devel/release#go1.22.minor --- Dockerfile | 2 +- Makefile | 2 +- README.md | 2 +- docker/Dockerfile_txsim | 2 +- go.mod | 2 +- go.work.example | 2 +- test/interchain/go.mod | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50799f378b..050d45a306 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # # Separating the builder and runtime image allows the runtime image to be # considerably smaller because it doesn't need to have Golang installed. -ARG BUILDER_IMAGE=docker.io/golang:1.22.5-alpine3.19 +ARG BUILDER_IMAGE=docker.io/golang:1.22.6-alpine3.19 ARG RUNTIME_IMAGE=docker.io/alpine:3.19 ARG TARGETOS ARG TARGETARCH diff --git a/Makefile b/Makefile index 138f21c0e1..448677db94 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ DOCKER_PROTO_BUILDER := docker run -v $(shell pwd):/workspace --workdir /workspa PROJECTNAME=$(shell basename "$(PWD)") HTTPS_GIT := https://github.com/celestiaorg/celestia-app.git PACKAGE_NAME := github.com/celestiaorg/celestia-app/v3 -GOLANG_CROSS_VERSION ?= v1.22.5 +GOLANG_CROSS_VERSION ?= v1.22.6 # process linker flags ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=celestia-app \ diff --git a/README.md b/README.md index 342a4ff8b7..9608fa690f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ node | | | | ### Source -1. [Install Go](https://go.dev/doc/install) 1.22.5 +1. [Install Go](https://go.dev/doc/install) 1.22.6 1. Clone this repo 1. Install the celestia-app CLI diff --git a/docker/Dockerfile_txsim b/docker/Dockerfile_txsim index 439da28815..471db9c76a 100644 --- a/docker/Dockerfile_txsim +++ b/docker/Dockerfile_txsim @@ -1,5 +1,5 @@ # Stage 1: generate celestia-appd binary -FROM --platform=$BUILDPLATFORM docker.io/golang:1.22.5-alpine3.19 as builder +FROM --platform=$BUILDPLATFORM docker.io/golang:1.22.6-alpine3.19 as builder ARG TARGETOS ARG TARGETARCH diff --git a/go.mod b/go.mod index e5c8833f5b..f0ce8a3715 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/celestiaorg/celestia-app/v3 -go 1.22.5 +go 1.22.6 require ( cosmossdk.io/errors v1.0.1 diff --git a/go.work.example b/go.work.example index 7e5b0ab114..85b25f4976 100644 --- a/go.work.example +++ b/go.work.example @@ -1,4 +1,4 @@ -go 1.22.5 +go 1.22.6 use ( . diff --git a/test/interchain/go.mod b/test/interchain/go.mod index 52ef37781b..8bdd1bf22d 100644 --- a/test/interchain/go.mod +++ b/test/interchain/go.mod @@ -1,6 +1,6 @@ module github.com/celestiaorg/celestia-app/test/interchain -go 1.22.5 +go 1.22.6 require ( cosmossdk.io/math v1.3.0