Skip to content

Commit 8ecfac0

Browse files
authored
Merge pull request #510 from persistenceOne/test/go1.24
chore: update required Go version to 1.24
2 parents a7171fe + 9d017e9 commit 8ecfac0

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.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@v6
2222
with:
23-
go-version: 1.23
23+
go-version: 1.24
2424
- run: make install
2525

2626
tidy:
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup go
3232
uses: actions/setup-go@v6
3333
with:
34-
go-version: 1.23
34+
go-version: 1.24
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@v5
6767
with:
68-
go-version: 1.23
68+
go-version: 1.24
6969
id: go
7070

7171
- name: Checkout repository
@@ -113,7 +113,7 @@ jobs:
113113
- name: Setup Go with cache
114114
uses: magnetikonline/action-golang-cache@v5
115115
with:
116-
go-version: 1.23
116+
go-version: 1.24
117117
id: go
118118

119119
- name: Checkout repository

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ local-image:
246246
ifeq (,$(shell which heighliner))
247247
echo 'heighliner' binary not found. Consider running `make get-heighliner`
248248
else
249-
heighliner build -c persistence --go-version 1.23 --local -f ./chains.yaml
249+
heighliner build -c persistence --go-version 1.24 --local -f ./chains.yaml
250250
endif
251251

252252
.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.23.11+ required. [ref](https://golang.org/doc/install)
37+
> Prerequisite: Go 1.24+ 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.23.11-alpine3.21 AS go-builder
1+
FROM golang:1.24-alpine3.23 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.23.11-alpine3.21
1+
FROM golang:1.24-alpine3.23
22

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

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/v17
22

3-
go 1.23.11
3+
go 1.24
44

55
toolchain go1.24.6
66

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/v17/interchaintest
22

3-
go 1.23.11
3+
go 1.24
44

55
toolchain go1.24.6
66

0 commit comments

Comments
 (0)