Skip to content

Commit

Permalink
Update golang to 1.23 (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia authored Jan 31, 2025
1 parent aed849e commit fe1f181
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.22.0
go-version: ^1.23.0
id: go

- name: Ensure go mod tidy runs without changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.22
go-version: ^1.23
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.22
go-version: ^1.23
- name: Make directories
run: |
mkdir -p ./build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.22
go-version: ^1.23
id: go

- name: Checkout sources
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22 as builder
FROM golang:1.23 as builder
ARG VERSION
WORKDIR /build

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/flashbots/mev-boost

go 1.22
go 1.23

require (
github.com/ethereum/go-ethereum v1.14.9
Expand Down

0 comments on commit fe1f181

Please sign in to comment.