Skip to content

Commit 515ef0e

Browse files
committed
update go 1.25.0
1 parent 5a9c13f commit 515ef0e

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v6
2424
- uses: actions/setup-go@v6
2525
with:
26-
go-version: 1.23
26+
go-version: "1.25.0"
2727
check-latest: true
2828
- uses: technote-space/[email protected]
2929
id: git_diff

.github/workflows/dependabot-update-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
token: "${{ steps.app-token.outputs.token }}"
2727
- uses: actions/setup-go@v6
2828
with:
29-
go-version: "1.24"
29+
go-version: "1.25.0"
3030
check-latest: true
3131
- name: Extract updated dependency
3232
id: deps

.github/workflows/dependencies-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: "Setup Go"
1616
uses: actions/setup-go@v6
1717
with:
18-
go-version: "1.24"
18+
go-version: "1.25.0"
1919
check-latest: true
2020
- name: "Dependency Review"
2121
uses: actions/dependency-review-action@v4
@@ -41,4 +41,4 @@ jobs:
4141
fi
4242
done
4343
44-
echo "Only known vulnerability (GO-2025-3443) present. Continuing."
44+
echo "Only known vulnerability (GO-2025-3443) present. Continuing."

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/setup-go@v6
1212
with:
13-
go-version: 1.23
13+
go-version: "1.25.0"
1414
check-latest: true
1515
- name: "Checkout Repository"
1616
uses: actions/checkout@v6

.github/workflows/goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v6
1717
with:
18-
go-version: 1.23
18+
go-version: "1.25.0"
1919
check-latest: true
2020
- name: release dry run
2121
run: make release-dry-run
@@ -25,4 +25,4 @@ jobs:
2525
run: |-
2626
echo 'GITHUB_TOKEN=${{secrets.GITHUB_TOKEN}}' > .release-env
2727
- name: release publish
28-
run: make release
28+
run: make release

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Required: setup-go, for all versions v3.0.0+ of golangci-lint
2222
- uses: actions/setup-go@v6
2323
with:
24-
go-version: 1.23
24+
go-version: "1.25.0"
2525
check-latest: true
2626
- uses: actions/checkout@v6
2727
- uses: technote-space/[email protected]

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/setup-go@v6
2626
with:
27-
go-version: 1.23
27+
go-version: "1.25.0"
2828
check-latest: true
2929
- uses: actions/checkout@v6
3030
- uses: technote-space/[email protected]
@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
- uses: actions/setup-go@v6
5353
with:
54-
go-version: 1.23
54+
go-version: "1.25.0"
5555
check-latest: true
5656
- uses: actions/checkout@v6
5757
- uses: technote-space/[email protected]
@@ -72,7 +72,7 @@ jobs:
7272
steps:
7373
- uses: actions/setup-go@v6
7474
with:
75-
go-version: 1.23
75+
go-version: "1.25.0"
7676
check-latest: true
7777
- uses: actions/checkout@v6
7878
- uses: technote-space/[email protected]
@@ -154,7 +154,7 @@ jobs:
154154
steps:
155155
- uses: actions/setup-go@v6
156156
with:
157-
go-version: 1.23
157+
go-version: "1.25.0"
158158
check-latest: true
159159
- uses: actions/checkout@v6
160160
- uses: technote-space/[email protected]
@@ -174,7 +174,7 @@ jobs:
174174
steps:
175175
- uses: actions/setup-go@v6
176176
with:
177-
go-version: 1.23
177+
go-version: "1.25.0"
178178
check-latest: true
179179
- uses: actions/checkout@v6
180180
- uses: technote-space/[email protected]
@@ -194,7 +194,7 @@ jobs:
194194
steps:
195195
- uses: actions/setup-go@v6
196196
with:
197-
go-version: 1.23
197+
go-version: "1.25.0"
198198
check-latest: true
199199
- uses: actions/checkout@v6
200200
- uses: technote-space/[email protected]
@@ -214,7 +214,7 @@ jobs:
214214
steps:
215215
- uses: actions/setup-go@v6
216216
with:
217-
go-version: 1.23
217+
go-version: "1.25.0"
218218
check-latest: true
219219
- uses: actions/checkout@v6
220220
- uses: technote-space/[email protected]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:alpine AS build-env
1+
FROM golang:1.25.0-alpine AS build-env
22

33
# Set up dependencies
44
ENV PACKAGES git build-base

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ build-all: tools build lint test vulncheck
176176
###############################################################################
177177

178178
PACKAGE_NAME:=github.com/evmos/ethermint
179-
GOLANG_CROSS_VERSION = v1.19
179+
GOLANG_CROSS_VERSION = v1.25.0
180180
GOPATH ?= '$(HOME)/go'
181181
release-dry-run:
182182
docker run \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ parent:
4040

4141
Ethermint is a scalable and interoperable Ethereum library, built on Proof-of-Stake with fast-finality using the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/) which runs on top of [Tendermint Core](https://github.com/tendermint/tendermint) consensus engine.
4242

43-
**Note**: Requires [Go 1.19+](https://golang.org/dl/)
43+
**Note**: Requires [Go 1.25.0+](https://golang.org/dl/)
4444

4545
## Installation
4646

0 commit comments

Comments
 (0)