From 78954be77e567b0b5a44c45f15dd06ab50c92a5d Mon Sep 17 00:00:00 2001 From: Peter <24580777+pharr117@users.noreply.github.com> Date: Tue, 8 Oct 2024 17:34:35 -0400 Subject: [PATCH] feat(go version): Update go version to 1.23.0 (#438) * Update go version to 1.23.0 * Bump dockerfile go version to 1.23 * Update go.mod * Other dockerfiles --------- Co-authored-by: Andrew Gouin --- Dockerfile | 2 +- go.mod | 2 +- local.Dockerfile | 2 +- rocksdb/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bc31619..9eb84c6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # See rocksdb/README.md for instructions to update rocksdb version FROM ghcr.io/strangelove-ventures/rocksdb:v7.10.2 AS rocksdb -FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS builder RUN apk add --update --no-cache\ gcc\ diff --git a/go.mod b/go.mod index 9643a4b3..60537d60 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/strangelove-ventures/cosmos-operator -go 1.21 +go 1.23.2 require ( cosmossdk.io/log v1.2.1 diff --git a/local.Dockerfile b/local.Dockerfile index fcb0fd3a..805cff9b 100644 --- a/local.Dockerfile +++ b/local.Dockerfile @@ -1,7 +1,7 @@ # See rocksdb/README.md for instructions to update rocksdb version FROM ghcr.io/strangelove-ventures/rocksdb:v7.10.2 AS rocksdb -FROM golang:1.20-alpine AS builder +FROM golang:1.23-alpine AS builder RUN apk add --update --no-cache\ gcc\ diff --git a/rocksdb/Dockerfile b/rocksdb/Dockerfile index a60a5c45..5bbc4605 100644 --- a/rocksdb/Dockerfile +++ b/rocksdb/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.20-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS builder RUN apk add --update --no-cache\ gcc\