Skip to content

Commit 62b168b

Browse files
feat: update dependencies and go version to 1.18
1 parent 18e8bae commit 62b168b

File tree

17 files changed

+101
-383
lines changed

17 files changed

+101
-383
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.17
29+
go-version: 1.18
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.17
47+
go-version: 1.18
4848
- run: |
4949
go install github.com/mitchellh/gox@latest
5050
go install github.com/tcnksm/ghr@latest

β€Ž.gitlab-ci.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: golang:1.16
1+
image: golang:1.18
22

33
stages:
44
- test

β€Žgo.modβ€Ž

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,52 @@
11
module github.com/go-semantic-release/semantic-release/v2
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/Masterminds/semver/v3 v3.1.1
77
github.com/cavaliergopher/grab/v3 v3.0.1
8-
github.com/hashicorp/go-hclog v1.1.0
9-
github.com/hashicorp/go-plugin v1.4.3
10-
github.com/schollz/progressbar/v3 v3.8.5
11-
github.com/spf13/cobra v1.3.0
12-
github.com/spf13/viper v1.10.1
13-
github.com/stretchr/testify v1.7.0
14-
google.golang.org/grpc v1.44.0
15-
google.golang.org/protobuf v1.27.1
8+
github.com/hashicorp/go-hclog v1.2.0
9+
github.com/hashicorp/go-plugin v1.4.4
10+
github.com/schollz/progressbar/v3 v3.8.6
11+
github.com/spf13/cobra v1.4.0
12+
github.com/spf13/viper v1.11.0
13+
github.com/stretchr/testify v1.7.1
14+
google.golang.org/grpc v1.46.2
15+
google.golang.org/protobuf v1.28.0
1616
)
1717

1818
require (
1919
github.com/davecgh/go-spew v1.1.1 // indirect
2020
github.com/fatih/color v1.13.0 // indirect
21-
github.com/fsnotify/fsnotify v1.5.1 // indirect
21+
github.com/fsnotify/fsnotify v1.5.4 // indirect
2222
github.com/golang/protobuf v1.5.2 // indirect
2323
github.com/hashicorp/hcl v1.0.0 // indirect
2424
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
2525
github.com/inconshreveable/mousetrap v1.0.0 // indirect
26-
github.com/magiconair/properties v1.8.5 // indirect
26+
github.com/magiconair/properties v1.8.6 // indirect
2727
github.com/mattn/go-colorable v0.1.12 // indirect
2828
github.com/mattn/go-isatty v0.0.14 // indirect
2929
github.com/mattn/go-runewidth v0.0.13 // indirect
3030
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
3131
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
32-
github.com/mitchellh/mapstructure v1.4.3 // indirect
32+
github.com/mitchellh/mapstructure v1.5.0 // indirect
3333
github.com/oklog/run v1.1.0 // indirect
34-
github.com/pelletier/go-toml v1.9.4 // indirect
34+
github.com/pelletier/go-toml v1.9.5 // indirect
35+
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
3536
github.com/pmezard/go-difflib v1.0.0 // indirect
3637
github.com/rivo/uniseg v0.2.0 // indirect
37-
github.com/spf13/afero v1.8.0 // indirect
38-
github.com/spf13/cast v1.4.1 // indirect
38+
github.com/spf13/afero v1.8.2 // indirect
39+
github.com/spf13/cast v1.5.0 // indirect
3940
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4041
github.com/spf13/pflag v1.0.5 // indirect
4142
github.com/subosito/gotenv v1.2.0 // indirect
42-
golang.org/x/crypto v0.0.0-20220128200615-198e4374d7ed // indirect
43-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
44-
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
45-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
43+
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect
44+
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
45+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
46+
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
4647
golang.org/x/text v0.3.7 // indirect
47-
google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350 // indirect
48-
gopkg.in/ini.v1 v1.66.3 // indirect
48+
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect
49+
gopkg.in/ini.v1 v1.66.4 // indirect
4950
gopkg.in/yaml.v2 v2.4.0 // indirect
50-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
51+
gopkg.in/yaml.v3 v3.0.0 // indirect
5152
)

β€Žgo.sumβ€Ž

Lines changed: 55 additions & 338 deletions
Large diffs are not rendered by default.

β€Žpkg/analyzer/commit_analyzer.pb.goβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/analyzer/commit_analyzer_grpc.pb.goβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/condition/ci_condition.pb.goβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/condition/ci_condition_grpc.pb.goβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/generator/changelog_generator.pb.goβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/generator/changelog_generator_grpc.pb.goβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)