Skip to content

Commit

Permalink
chore: upgrade to Go 1.22.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rootulp committed Jun 21, 2024
1 parent 7947571 commit ad042c8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 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.3-alpine3.19
ARG BUILDER_IMAGE=docker.io/golang:1.22.4-alpine3.19
ARG RUNTIME_IMAGE=docker.io/alpine:3.19
ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/v2
GOLANG_CROSS_VERSION ?= v1.22.3
GOLANG_CROSS_VERSION ?= v1.22.4

# 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.3
1. [Install Go](https://go.dev/doc/install) 1.22.4
1. Clone this repo
1. Install the celestia-app CLI

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.3
go 1.22.4

use (
.
Expand Down
2 changes: 1 addition & 1 deletion test/testground/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BUILD_BASE_IMAGE is the base image to use for the build. It contains a rolling
# accumulation of Go build/package caches.
ARG BUILD_BASE_IMAGE=docker.io/golang:1.22.3-alpine3.19
ARG BUILD_BASE_IMAGE=docker.io/golang:1.22.4-alpine3.19
# This Dockerfile performs a multi-stage build and RUNTIME_IMAGE is the image
# onto which to copy the resulting binary.
#
Expand Down
4 changes: 2 additions & 2 deletions test/testground/compositions/standard/plan.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ cpu = "6"
count = 100
percentage = 0.0
[groups.build_config]
build_base_image = "golang:1.22.3"
build_base_image = "golang:1.22.4"
enable_go_build_cache = true
enabled = true
go_version = "1.22.3"
go_version = "1.22.4"
[groups.build]
[groups.run]
artifact = ""
Expand Down
4 changes: 2 additions & 2 deletions test/testground/manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ runner = "local:docker"

[builders."docker:generic"]
enabled = true
build_base_image = "golang:1.22.3"
go_version = "1.22.3"
build_base_image = "golang:1.22.4"
go_version = "1.22.4"
enable_go_build_cache = true

[runners."local:docker"]
Expand Down

0 comments on commit ad042c8

Please sign in to comment.