Skip to content

Commit

Permalink
fix(ci): update go1.21->1.22 everywhere
Browse files Browse the repository at this point in the history
We updated go.mod to use go1.22 recently, but forgot to update the ci workflows.
  • Loading branch information
samlaf committed Oct 12, 2024
1 parent e0af9a4 commit 434605c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
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@v3
with:
go-version: 1.21
go-version: 1.22

- name: Build App
run: make eigenda-proxy
2 changes: 1 addition & 1 deletion .github/workflows/holesky-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22

- name: Install project dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: '1.21' # The Go version to download (if necessary) and use.
go-version: '1.22' # The Go version to download (if necessary) and use.
- run: go version

- name: Checkout EigenDA
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22

- name: Install project dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# multi container builds ftw

FROM golang:1.21.10-alpine3.19 AS builder
FROM golang:1.22.8-alpine3.19 AS builder

RUN apk add --no-cache make gcc musl-dev linux-headers jq bash git

Expand Down

0 comments on commit 434605c

Please sign in to comment.