Skip to content

Commit 6b45989

Browse files
authoredJan 28, 2025··
chore(deps): bump to go 1.23.5 (#1597)
## Description fixes this CI https://github.com/celestiaorg/celestia-core/actions/runs/13010015861/job/36285442270?pr=1595 by bumping to 1.23.5
1 parent d81b830 commit 6b45989

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎DOCKER/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Use a build arg to ensure that both stages use the same,
22
# hopefully current, go version.
3-
ARG GOLANG_BASE_IMAGE=golang:1.23.1-alpine
3+
ARG GOLANG_BASE_IMAGE=golang:1.23.5-alpine
44

55
# stage 1 Generate CometBFT Binary
66
FROM --platform=$BUILDPLATFORM $GOLANG_BASE_IMAGE as builder

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This repo intends on preserving the minimal possible diff with [cometbft/cometbf
4949
- **specific to Celestia**: consider if [celestia-app](https://github.com/celestiaorg/celestia-app) is a better target
5050
- **not specific to Celestia**: consider making the contribution upstream in CometBFT
5151

52-
1. [Install Go](https://go.dev/doc/install) 1.23.1+
52+
1. [Install Go](https://go.dev/doc/install) 1.23.5+
5353
2. Fork this repo
5454
3. Clone your fork
5555
4. Find an issue to work on (see [good first issues](https://github.com/celestiaorg/celestia-core/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22))

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tendermint/tendermint
22

3-
go 1.23.1
3+
go 1.23.5
44

55
require (
66
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c

‎scripts/proto-gen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cd "$(git rev-parse --show-toplevel)"
1010

1111
# Run inside Docker to install the correct versions of the required tools
1212
# without polluting the local system.
13-
docker run --rm -i -v "$PWD":/w --workdir=/w golang:1.23.1-alpine sh <<"EOF"
13+
docker run --rm -i -v "$PWD":/w --workdir=/w golang:1.23.5-alpine sh <<"EOF"
1414
apk add git make
1515
1616
go install github.com/bufbuild/buf/cmd/buf

‎test/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.1
1+
FROM golang:1.23.5
22

33
# Grab deps (jq, hexdump, xxd, killall)
44
RUN apt-get update && \

‎test/e2e/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# We need to build in a Linux environment to support C libraries, e.g. RocksDB.
22
# We use Debian instead of Alpine, so that we can use binary database packages
33
# instead of spending time compiling them.
4-
FROM golang:1.23.1-bullseye
4+
FROM golang:1.23.5-bullseye
55

66
RUN apt-get -qq update -y && apt-get -qq upgrade -y >/dev/null
77
RUN apt-get -qq install -y libleveldb-dev librocksdb-dev >/dev/null

0 commit comments

Comments
 (0)
Please sign in to comment.