Skip to content

Commit ade0e49

Browse files
authored
fix(*): update all dependencies to fix security findings
2 parents 2c8d2d9 + ca6488e commit ade0e49

File tree

3 files changed

+129
-428
lines changed

3 files changed

+129
-428
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
build:
99
strategy:
1010
matrix:
11-
go: ["1.17", "1.18"]
11+
go: ["1.18", "1.19"]
1212
env:
13-
DEFAULT_GO: "1.18"
13+
DEFAULT_GO: "1.19"
1414
name: Build with go version ${{ matrix.go }}
1515
runs-on: ubuntu-latest
1616
steps:

go.mod

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

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/Masterminds/semver v1.5.0
7-
github.com/go-git/go-billy/v5 v5.3.1
8-
github.com/go-git/go-git/v5 v5.4.2
7+
github.com/go-git/go-billy/v5 v5.4.1
8+
github.com/go-git/go-git/v5 v5.5.2
99
github.com/google/go-github/v25 v25.1.3
1010
github.com/pkg/errors v0.9.1
11-
github.com/sirupsen/logrus v1.8.1
12-
github.com/spf13/cobra v1.4.0
11+
github.com/sirupsen/logrus v1.9.0
12+
github.com/spf13/cobra v1.6.1
1313
github.com/stretchr/testify v1.7.0
14-
github.com/tidwall/sjson v1.2.4
15-
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
14+
github.com/tidwall/sjson v1.2.5
15+
golang.org/x/oauth2 v0.5.0
1616
gopkg.in/yaml.v2 v2.4.0
1717
)
1818

1919
require (
20-
github.com/Microsoft/go-winio v0.5.2 // indirect
21-
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect
20+
github.com/Microsoft/go-winio v0.6.0 // indirect
21+
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
2222
github.com/acomagu/bufpipe v1.0.3 // indirect
23+
github.com/cloudflare/circl v1.3.2 // indirect
2324
github.com/davecgh/go-spew v1.1.1 // indirect
24-
github.com/emirpasic/gods v1.12.1 // indirect
25+
github.com/emirpasic/gods v1.18.1 // indirect
2526
github.com/go-git/gcfg v1.5.0 // indirect
2627
github.com/golang/protobuf v1.5.2 // indirect
27-
github.com/google/go-cmp v0.5.6 // indirect
2828
github.com/google/go-querystring v1.1.0 // indirect
29-
github.com/imdario/mergo v0.3.12 // indirect
30-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
29+
github.com/imdario/mergo v0.3.13 // indirect
30+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3131
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3232
github.com/kevinburke/ssh_config v1.2.0 // indirect
33-
github.com/mitchellh/go-homedir v1.1.0 // indirect
33+
github.com/pjbgf/sha1cd v0.2.3 // indirect
3434
github.com/pmezard/go-difflib v1.0.0 // indirect
35-
github.com/sergi/go-diff v1.2.0 // indirect
35+
github.com/sergi/go-diff v1.3.1 // indirect
36+
github.com/skeema/knownhosts v1.1.0 // indirect
3637
github.com/spf13/pflag v1.0.5 // indirect
37-
github.com/tidwall/gjson v1.14.0 // indirect
38+
github.com/tidwall/gjson v1.14.4 // indirect
3839
github.com/tidwall/match v1.1.1 // indirect
39-
github.com/tidwall/pretty v1.2.0 // indirect
40-
github.com/xanzy/ssh-agent v0.3.1 // indirect
41-
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
42-
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3 // indirect
43-
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
40+
github.com/tidwall/pretty v1.2.1 // indirect
41+
github.com/xanzy/ssh-agent v0.3.3 // indirect
42+
golang.org/x/crypto v0.6.0 // indirect
43+
golang.org/x/mod v0.8.0 // indirect
44+
golang.org/x/net v0.7.0 // indirect
45+
golang.org/x/sys v0.5.0 // indirect
46+
golang.org/x/tools v0.6.0 // indirect
4447
google.golang.org/appengine v1.6.7 // indirect
45-
google.golang.org/protobuf v1.28.0 // indirect
48+
google.golang.org/protobuf v1.28.1 // indirect
4649
gopkg.in/warnings.v0 v0.1.2 // indirect
47-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
50+
gopkg.in/yaml.v3 v3.0.1 // indirect
4851
)

0 commit comments

Comments
 (0)