Skip to content

Commit

Permalink
chore(deps): upgrade to Go 1.22.6 (#3764)
Browse files Browse the repository at this point in the history
Motivated by #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
(cherry picked from commit 3ddf196)

# Conflicts:
#	Makefile
  • Loading branch information
rootulp authored and mergify[bot] committed Aug 21, 2024
1 parent 387aafe commit c1a85e8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ IMAGE := ghcr.io/tendermint/docker-build-proto:latest
DOCKER_PROTO_BUILDER := docker run -v $(shell pwd):/workspace --workdir /workspace $(IMAGE)
PROJECTNAME=$(shell basename "$(PWD)")
HTTPS_GIT := https://github.com/celestiaorg/celestia-app.git
<<<<<<< HEAD
PACKAGE_NAME := github.com/celestiaorg/celestia-app/v2
GOLANG_CROSS_VERSION ?= v1.22.5
=======
PACKAGE_NAME := github.com/celestiaorg/celestia-app/v3
GOLANG_CROSS_VERSION ?= v1.22.6
>>>>>>> 3ddf196c (chore(deps): upgrade to Go 1.22.6 (#3764))

# process linker flags
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=celestia-app \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_txsim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/celestiaorg/celestia-app/v2

go 1.22.5
go 1.22.6

require (
cosmossdk.io/errors v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion go.work.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.22.5
go 1.22.6

use (
.
Expand Down
2 changes: 1 addition & 1 deletion test/interchain/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c1a85e8

Please sign in to comment.