diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c31b22ba..4e50c716 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/holesky-test.yml b/.github/workflows/holesky-test.yml index e37779d2..34b3e7be 100644 --- a/.github/workflows/holesky-test.yml +++ b/.github/workflows/holesky-test.yml @@ -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: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d41a1653..06c83b08 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index e4e0c10d..27748632 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -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: | diff --git a/Dockerfile b/Dockerfile index a6187161..163fe522 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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