Skip to content

Commit 7d971ec

Browse files
authored
deps: bumping go version 1.18 (cosmos#1627)
* bumping go version 1.18 * updating broken workflow setup
1 parent 48a6ae5 commit 7d971ec

File tree

6 files changed

+8
-84
lines changed

6 files changed

+8
-84
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-go@v3
2323
with:
24-
go-version: '1.17'
24+
go-version: '1.18'
2525

2626
- name: Release
2727
uses: goreleaser/goreleaser-action@v3

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
steps:
2121
- uses: actions/setup-go@v3
2222
with:
23-
go-version: 1.17
23+
go-version: 1.18
2424
- name: Display go version
2525
run: go version
2626
- name: install tparse
2727
run: |
28-
export GO111MODULE="on" && go get github.com/mfridman/tparse@v0.8.3
28+
go install github.com/mfridman/tparse@v0.8.3
2929
- uses: actions/cache@v3
3030
with:
3131
path: ~/go/bin
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141
- uses: actions/setup-go@v3
4242
with:
43-
go-version: 1.17
43+
go-version: 1.18
4444
- uses: technote-space/get-diff-action@v6.1.0
4545
id: git_diff
4646
with:
@@ -95,7 +95,7 @@ jobs:
9595
- uses: actions/checkout@v3
9696
- uses: actions/setup-go@v3
9797
with:
98-
go-version: 1.17
98+
go-version: 1.18
9999
- uses: technote-space/get-diff-action@v6.1.0
100100
with:
101101
PATTERNS: |

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
3939
### Dependencies
4040

4141
* [\#1525](https://github.com/cosmos/ibc-go/pull/1525) Bump SDK version to v0.45.5
42+
* [\#1627](https://github.com/cosmos/ibc-go/pull/1627) Bump Go version to 1.18
4243

4344
### API Breaking
4445

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17 as builder
1+
FROM golang:1.18 as builder
22

33
ENV GOPATH=""
44
ENV GOMODULE="on"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.17
1+
go 1.18
22

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

0 commit comments

Comments
 (0)