Skip to content

Commit

Permalink
bump go to 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jul 31, 2024
1 parent e33a07f commit 38778c7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/_shared-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.22.x

# setup project dependencies
- name: Get dependencies
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.22.x

# setup cross build libs
- name: Get cross build dependencies
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.22.x

# setup project dependencies
- name: Get dependencies
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.22.x

# setup project dependencies
- name: Get dependencies
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.22.x

# setup project dependencies
- name: Get dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_shared-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.22.x

- name: Verify dependencies
run: go mod verify
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build env
FROM golang:1.21 AS build-env
FROM golang:1.22 AS build-env
COPY go.mod go.sum /src/
WORKDIR /src
RUN go mod download
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ethpandaops/dora

go 1.21
go 1.22

require (
dario.cat/mergo v1.0.0
Expand All @@ -13,6 +13,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/s3 v1.58.2
github.com/coocood/freecache v1.2.4
github.com/ethereum/go-ethereum v1.14.7
github.com/ethpandaops/ethwallclock v0.3.0
github.com/glebarez/go-sqlite v1.22.0
github.com/go-redis/redis/v8 v8.11.5
github.com/gorilla/mux v1.8.1
Expand All @@ -22,6 +23,7 @@ require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/lib/pq v1.10.9
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mashingan/smapping v0.1.19
github.com/mitchellh/mapstructure v1.5.0
github.com/pk910/dynamic-ssz v0.0.4
github.com/pressly/goose/v3 v3.21.1
Expand All @@ -45,13 +47,11 @@ require (
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/ethpandaops/ethwallclock v0.3.0 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/huin/goupnp v1.3.0 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
github.com/mashingan/smapping v0.1.19 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/reflectwalk v1.0.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
Expand Down

0 comments on commit 38778c7

Please sign in to comment.