Skip to content

Commit dedd719

Browse files
feat: update to go1.17
1 parent f710fa3 commit dedd719

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/setup-go@v2
2828
with:
29-
go-version: 1.16
29+
go-version: 1.17
3030
- uses: actions/checkout@v2
3131
- run: go build ./cmd/semantic-release/
3232
env:
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/setup-go@v2
4646
with:
47-
go-version: 1.16
47+
go-version: 1.17
4848
- run: |
4949
go install github.com/mitchellh/gox@latest
5050
go install github.com/tcnksm/ghr@latest

go.mod

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/go-semantic-release/semantic-release/v2
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/Masterminds/semver/v3 v3.1.0
@@ -15,3 +15,35 @@ require (
1515
google.golang.org/grpc v1.33.2
1616
google.golang.org/protobuf v1.25.0
1717
)
18+
19+
require (
20+
github.com/davecgh/go-spew v1.1.1 // indirect
21+
github.com/fatih/color v1.7.0 // indirect
22+
github.com/fsnotify/fsnotify v1.4.7 // indirect
23+
github.com/hashicorp/hcl v1.0.0 // indirect
24+
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
25+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
26+
github.com/magiconair/properties v1.8.1 // indirect
27+
github.com/mattn/go-colorable v0.1.4 // indirect
28+
github.com/mattn/go-isatty v0.0.12 // indirect
29+
github.com/mattn/go-runewidth v0.0.9 // indirect
30+
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
31+
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
32+
github.com/mitchellh/mapstructure v1.1.2 // indirect
33+
github.com/oklog/run v1.0.0 // indirect
34+
github.com/pelletier/go-toml v1.2.0 // indirect
35+
github.com/pmezard/go-difflib v1.0.0 // indirect
36+
github.com/spf13/afero v1.1.2 // indirect
37+
github.com/spf13/cast v1.3.0 // indirect
38+
github.com/spf13/jwalterweatherman v1.0.0 // indirect
39+
github.com/spf13/pflag v1.0.5 // indirect
40+
github.com/subosito/gotenv v1.2.0 // indirect
41+
golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9 // indirect
42+
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
43+
golang.org/x/sys v0.0.0-20201113135734-0a15ea8d9b02 // indirect
44+
golang.org/x/text v0.3.2 // indirect
45+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
46+
gopkg.in/ini.v1 v1.51.0 // indirect
47+
gopkg.in/yaml.v2 v2.2.8 // indirect
48+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
49+
)

0 commit comments

Comments
 (0)