Skip to content

Commit 8ead681

Browse files
feat: update dependencies
1 parent 7484f75 commit 8ead681

File tree

4 files changed

+106
-130
lines changed

4 files changed

+106
-130
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-go@v3
1717
with:
18-
go-version: 1.18
18+
go-version: 1.19
1919
- uses: golangci/golangci-lint-action@v3
2020

2121
build:
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v3
3131
- uses: actions/setup-go@v3
3232
with:
33-
go-version: 1.18
33+
go-version: 1.19
3434
- run: go build ./cmd/semantic-release/
3535
env:
3636
CGO_ENABLED: 0
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v3
4949
- uses: actions/setup-go@v3
5050
with:
51-
go-version: 1.18
51+
go-version: 1.19
5252
- run: go build ./cmd/semantic-release/
5353
- uses: docker/login-action@v1
5454
with:

go.mod

+31-31
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
11
module github.com/go-semantic-release/semantic-release/v2
22

3-
go 1.18
3+
go 1.19
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.1.1
6+
github.com/Masterminds/semver/v3 v3.2.0
77
github.com/cavaliergopher/grab/v3 v3.0.1
8-
github.com/google/go-github/v45 v45.0.0
9-
github.com/hashicorp/go-hclog v1.2.0
10-
github.com/hashicorp/go-plugin v1.4.4
11-
github.com/schollz/progressbar/v3 v3.8.6
12-
github.com/spf13/cobra v1.4.0
13-
github.com/spf13/viper v1.11.0
14-
github.com/stretchr/testify v1.7.1
15-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
16-
google.golang.org/grpc v1.46.2
17-
google.golang.org/protobuf v1.28.0
8+
github.com/google/go-github/v49 v49.1.1-0.20230111123143-ced4abd274f3
9+
github.com/hashicorp/go-hclog v1.4.0
10+
github.com/hashicorp/go-plugin v1.4.8
11+
github.com/schollz/progressbar/v3 v3.13.0
12+
github.com/spf13/cobra v1.6.1
13+
github.com/spf13/viper v1.14.0
14+
github.com/stretchr/testify v1.8.1
15+
golang.org/x/oauth2 v0.4.0
16+
google.golang.org/grpc v1.52.0
17+
google.golang.org/protobuf v1.28.1
1818
)
1919

2020
require (
2121
github.com/davecgh/go-spew v1.1.1 // indirect
2222
github.com/fatih/color v1.13.0 // indirect
23-
github.com/fsnotify/fsnotify v1.5.4 // indirect
23+
github.com/fsnotify/fsnotify v1.6.0 // indirect
2424
github.com/golang/protobuf v1.5.2 // indirect
2525
github.com/google/go-querystring v1.1.0 // indirect
2626
github.com/hashicorp/hcl v1.0.0 // indirect
27-
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
28-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
29-
github.com/magiconair/properties v1.8.6 // indirect
30-
github.com/mattn/go-colorable v0.1.12 // indirect
31-
github.com/mattn/go-isatty v0.0.14 // indirect
32-
github.com/mattn/go-runewidth v0.0.13 // indirect
27+
github.com/hashicorp/yamux v0.1.1 // indirect
28+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
29+
github.com/magiconair/properties v1.8.7 // indirect
30+
github.com/mattn/go-colorable v0.1.13 // indirect
31+
github.com/mattn/go-isatty v0.0.17 // indirect
32+
github.com/mattn/go-runewidth v0.0.14 // indirect
3333
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
3434
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
3535
github.com/mitchellh/mapstructure v1.5.0 // indirect
3636
github.com/oklog/run v1.1.0 // indirect
3737
github.com/pelletier/go-toml v1.9.5 // indirect
38-
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
38+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
3939
github.com/pmezard/go-difflib v1.0.0 // indirect
40-
github.com/rivo/uniseg v0.2.0 // indirect
41-
github.com/spf13/afero v1.8.2 // indirect
40+
github.com/rivo/uniseg v0.4.3 // indirect
41+
github.com/spf13/afero v1.9.3 // indirect
4242
github.com/spf13/cast v1.5.0 // indirect
4343
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4444
github.com/spf13/pflag v1.0.5 // indirect
45-
github.com/subosito/gotenv v1.2.0 // indirect
46-
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect
47-
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
48-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
49-
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
50-
golang.org/x/text v0.3.7 // indirect
45+
github.com/subosito/gotenv v1.4.2 // indirect
46+
golang.org/x/crypto v0.5.0 // indirect
47+
golang.org/x/net v0.5.0 // indirect
48+
golang.org/x/sys v0.4.0 // indirect
49+
golang.org/x/term v0.4.0 // indirect
50+
golang.org/x/text v0.6.0 // indirect
5151
google.golang.org/appengine v1.6.7 // indirect
52-
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect
53-
gopkg.in/ini.v1 v1.66.4 // indirect
52+
google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9 // indirect
53+
gopkg.in/ini.v1 v1.67.0 // indirect
5454
gopkg.in/yaml.v2 v2.4.0 // indirect
55-
gopkg.in/yaml.v3 v3.0.0 // indirect
55+
gopkg.in/yaml.v3 v3.0.1 // indirect
5656
)

0 commit comments

Comments
 (0)