Skip to content

Commit b18e8db

Browse files
authored
fix: update go version in dockers and CI (#370)
update go version in dockers and CI
1 parent d7295b2 commit b18e8db

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.21
23+
go-version: 1.23
2424
- run: make install
2525

2626
tidy:
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup go
3232
uses: actions/setup-go@v5
3333
with:
34-
go-version: 1.21
34+
go-version: 1.23
3535
- run: |
3636
go mod tidy
3737
CHANGES_IN_REPO=$(git status --porcelain)

.github/workflows/e2e-testing.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Setup Go with cache
6666
uses: magnetikonline/action-golang-cache@v4
6767
with:
68-
go-version: 1.21.0
68+
go-version: 1.23
6969
id: go
7070

7171
- name: Checkout repository
@@ -104,7 +104,7 @@ jobs:
104104
- name: Setup Go with cache
105105
uses: magnetikonline/action-golang-cache@v4
106106
with:
107-
go-version: 1.21.0
107+
go-version: 1.23
108108
id: go
109109

110110
- name: Checkout repository

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ local-image:
230230
ifeq (,$(shell which heighliner))
231231
echo 'heighliner' binary not found. Consider running `make get-heighliner`
232232
else
233-
heighliner build -c persistence --go-version 1.21 --local -f ./chains.yaml
233+
heighliner build -c persistence --go-version 1.23 --local -f ./chains.yaml
234234
endif
235235

236236
.PHONY: get-heighliner local-image

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ chains.
3434

3535
## Installation Steps
3636

37-
> Prerequisite: Go 1.21.0+ required. [ref](https://golang.org/doc/install)
37+
> Prerequisite: Go 1.23.6+ required. [ref](https://golang.org/doc/install)
3838
3939
> Prerequisite: git. [ref](https://github.com/git/git)
4040

docker/persistencecore/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21.5-alpine3.18 AS go-builder
1+
FROM golang:1.23.6-alpine3.21 AS go-builder
22

33
# Set up dependencies
44
ENV PACKAGES curl make git libusb-dev libc-dev bash gcc linux-headers eudev-dev python3

docker/persistencecore/Dockerfile.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21.5-alpine3.18
1+
FROM golang:1.23.6-alpine3.21
22

33
# Set up dependencies
44
ENV PACKAGES curl make git libusb-dev libc-dev bash gcc linux-headers eudev-dev python3 git

interchaintest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/persistenceOne/persistenceCore/v11/interchaintest
22

3-
go 1.21
3+
go 1.23
44

55
require (
66
cosmossdk.io/math v1.3.0

0 commit comments

Comments
 (0)