Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.23
- run: make install

tidy:
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.23
- run: |
go mod tidy
CHANGES_IN_REPO=$(git status --porcelain)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup Go with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: 1.21.0
go-version: 1.23
id: go

- name: Checkout repository
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Setup Go with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: 1.21.0
go-version: 1.23
id: go

- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ local-image:
ifeq (,$(shell which heighliner))
echo 'heighliner' binary not found. Consider running `make get-heighliner`
else
heighliner build -c persistence --go-version 1.21 --local -f ./chains.yaml
heighliner build -c persistence --go-version 1.23 --local -f ./chains.yaml
endif

.PHONY: get-heighliner local-image
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ chains.

## Installation Steps

> Prerequisite: Go 1.21.0+ required. [ref](https://golang.org/doc/install)
> Prerequisite: Go 1.23.6+ required. [ref](https://golang.org/doc/install)

> Prerequisite: git. [ref](https://github.com/git/git)

Expand Down
2 changes: 1 addition & 1 deletion docker/persistencecore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.5-alpine3.18 AS go-builder
FROM golang:1.23.6-alpine3.21 AS go-builder

# Set up dependencies
ENV PACKAGES curl make git libusb-dev libc-dev bash gcc linux-headers eudev-dev python3
Expand Down
2 changes: 1 addition & 1 deletion docker/persistencecore/Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.5-alpine3.18
FROM golang:1.23.6-alpine3.21

# Set up dependencies
ENV PACKAGES curl make git libusb-dev libc-dev bash gcc linux-headers eudev-dev python3 git
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/persistenceOne/persistenceCore/v11/interchaintest

go 1.21
go 1.23

require (
cosmossdk.io/math v1.3.0
Expand Down
Loading