Skip to content

Commit 9028601

Browse files
authored
Merge pull request #36 from yutachaos/feature/update_go_version
update go 1.9
2 parents fbe533a + a75955f commit 9028601

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- name: setup go
1515
uses: actions/setup-go@v1
1616
with:
17-
go-version: 1.16.x
17+
go-version: 1.19.x
1818
- name: run GoReleaser
19-
uses: goreleaser/goreleaser-action@v2
19+
uses: goreleaser/goreleaser-action@v3
2020
with:
2121
distribution: goreleaser
2222
version: latest

go.mod

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@ module github.com/knqyf263/utern
33
require (
44
github.com/aws/aws-sdk-go v1.44.88
55
github.com/briandowns/spinner v1.7.0
6-
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
76
github.com/fatih/color v1.7.0
8-
github.com/mattn/go-colorable v0.1.4 // indirect
9-
github.com/mattn/go-isatty v0.0.10 // indirect
107
github.com/pkg/errors v0.9.1
118
github.com/urfave/cli v1.22.1
129
)
1310

14-
go 1.16
11+
require (
12+
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
13+
github.com/jmespath/go-jmespath v0.4.0 // indirect
14+
github.com/mattn/go-colorable v0.1.4 // indirect
15+
github.com/mattn/go-isatty v0.0.10 // indirect
16+
github.com/russross/blackfriday/v2 v2.0.1 // indirect
17+
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
18+
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
19+
)
20+
21+
go 1.19

0 commit comments

Comments
 (0)