diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bc3c25624..2b137c1ef 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Go 🧰 uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: 1.19 - name: Compute diff 📜 uses: technote-space/get-diff-action@v6.1.2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e10b7a356..f51999d16 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Go 🧰 uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: 1.19 - name: Compute diff 📜 uses: technote-space/get-diff-action@v6.1.2 diff --git a/Dockerfile.cosmwasm b/Dockerfile.cosmwasm index 542b2d6f1..71ecc6d48 100644 --- a/Dockerfile.cosmwasm +++ b/Dockerfile.cosmwasm @@ -1,6 +1,6 @@ -FROM golang:1.20-alpine AS builder +FROM golang:1.19-alpine AS builder RUN apk update && apk add --no-cache make git WORKDIR /go/src/github.com/forbole/bdjuno COPY . ./ diff --git a/Dockerfile.default b/Dockerfile.default index 92c367093..a23590386 100644 --- a/Dockerfile.default +++ b/Dockerfile.default @@ -1,4 +1,4 @@ -FROM golang:1.20-alpine AS builder +FROM golang:1.19-alpine AS builder RUN apk update && apk add --no-cache make git WORKDIR /go/src/github.com/forbole/bdjuno COPY . ./ diff --git a/go.mod b/go.mod index 30edd0c3d..f4a03eaf1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/forbole/bdjuno/v4 -go 1.20 +go 1.19 require ( github.com/cometbft/cometbft v0.37.2