Skip to content

Commit ad5098b

Browse files
committed
bump go version
1 parent c9496d4 commit ad5098b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/_shared-build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up go
5555
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
5656
with:
57-
go-version: 1.24.x
57+
go-version: 1.25.x
5858

5959
# setup project dependencies
6060
- name: Get dependencies
@@ -87,7 +87,7 @@ jobs:
8787
- name: Set up go
8888
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
8989
with:
90-
go-version: 1.24.x
90+
go-version: 1.25.x
9191

9292
# setup cross build libs
9393
- name: Get cross build dependencies
@@ -126,7 +126,7 @@ jobs:
126126
- name: Set up go
127127
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
128128
with:
129-
go-version: 1.24.x
129+
go-version: 1.25.x
130130

131131
# setup project dependencies
132132
- name: Get dependencies
@@ -159,7 +159,7 @@ jobs:
159159
- name: Set up go
160160
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
161161
with:
162-
go-version: 1.24.x
162+
go-version: 1.25.x
163163

164164
# setup project dependencies
165165
- name: Get dependencies
@@ -192,7 +192,7 @@ jobs:
192192
- name: Set up go
193193
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
194194
with:
195-
go-version: 1.24.x
195+
go-version: 1.25.x
196196

197197
# setup project dependencies
198198
- name: Get dependencies

.github/workflows/_shared-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up go
1616
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
1717
with:
18-
go-version: 1.24.x
18+
go-version: 1.25.x
1919

2020
- name: Verify dependencies
2121
run: go mod verify

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build env
2-
FROM golang:1.24 AS build-env
2+
FROM golang:1.25 AS build-env
33
COPY go.mod go.sum /src/
44
WORKDIR /src
55
RUN go mod download

go.mod

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

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/ethereum/go-ethereum v1.16.7

0 commit comments

Comments
 (0)