Skip to content

Commit

Permalink
Update to go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
ulbqb committed Jul 27, 2023
1 parent fb25802 commit 4957816
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: '1.17'
go-version: '1.20'

- name: Release
uses: goreleaser/goreleaser-action@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '1.20'
- name: Display go version
run: go version
- name: install tparse
run: |
export GO111MODULE="on" && go get github.com/mfridman/tparse@v0.8.3
go install github.com/mfridman/tparse@v0.8.3
- uses: actions/cache@v3
with:
path: ~/go/bin
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '1.20'
- uses: technote-space/get-diff-action@v6.1.0
id: git_diff
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '1.20'
- uses: technote-space/get-diff-action@v6.1.0
with:
PATTERNS: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17 as builder
FROM golang:1.20 as builder

ENV GOPATH=""
ENV GOMODULE="on"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.18
go 1.20

module github.com/cosmos/ibc-go/v4

Expand Down

0 comments on commit 4957816

Please sign in to comment.