Skip to content

Commit

Permalink
chore: downgrade go version to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
MonikaCat committed Feb 6, 2024
1 parent 59a9554 commit 9a8ba44
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cosmwasm
Original file line number Diff line number Diff line change
@@ -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 . ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.default
Original file line number Diff line number Diff line change
@@ -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 . ./
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/forbole/bdjuno/v4

go 1.20
go 1.19

require (
github.com/cometbft/cometbft v0.37.2
Expand Down

0 comments on commit 9a8ba44

Please sign in to comment.