Skip to content

Commit d915c6f

Browse files
authored
Merge pull request #106 from fullstack-devops/bugfix/nil-pointer-gh-enterprise
fix nil pointer gh enterprise + update
2 parents 1bed771 + 86fd50c commit d915c6f

File tree

3 files changed

+83
-21
lines changed

3 files changed

+83
-21
lines changed

go.mod

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,47 @@
11
module awesome-ci
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/coreos/go-semver v0.3.0
77
github.com/go-git/go-git/v5 v5.4.2
8-
github.com/google/go-github/v44 v44.0.0
9-
github.com/xanzy/go-gitlab v0.64.0
10-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
8+
github.com/google/go-github/v44 v44.1.0
9+
github.com/xanzy/go-gitlab v0.74.0
10+
golang.org/x/oauth2 v0.1.0
1111
gopkg.in/yaml.v2 v2.4.0
1212
)
1313

1414
require (
15-
github.com/Microsoft/go-winio v0.5.2 // indirect
16-
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect
15+
github.com/Microsoft/go-winio v0.6.0 // indirect
16+
github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4 // indirect
1717
github.com/acomagu/bufpipe v1.0.3 // indirect
18+
github.com/cloudflare/circl v1.2.0 // indirect
1819
github.com/emirpasic/gods v1.18.1 // indirect
1920
github.com/fatih/color v1.13.0 // indirect
2021
github.com/go-git/gcfg v1.5.0 // indirect
2122
github.com/go-git/go-billy/v5 v5.3.1 // indirect
2223
github.com/golang/protobuf v1.5.2 // indirect
23-
github.com/google/go-cmp v0.5.8 // indirect
24+
github.com/google/go-cmp v0.5.9 // indirect
2425
github.com/google/go-querystring v1.1.0 // indirect
2526
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
26-
github.com/hashicorp/go-hclog v1.2.0 // indirect
27+
github.com/hashicorp/go-hclog v1.3.1 // indirect
2728
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
28-
github.com/imdario/mergo v0.3.12 // indirect
29+
github.com/imdario/mergo v0.3.13 // indirect
2930
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3031
github.com/kevinburke/ssh_config v1.2.0 // indirect
31-
github.com/mattn/go-colorable v0.1.12 // indirect
32-
github.com/mattn/go-isatty v0.0.14 // indirect
32+
github.com/mattn/go-colorable v0.1.13 // indirect
33+
github.com/mattn/go-isatty v0.0.16 // indirect
3334
github.com/mitchellh/go-homedir v1.1.0 // indirect
3435
github.com/sergi/go-diff v1.2.0 // indirect
35-
github.com/xanzy/ssh-agent v0.3.1 // indirect
36-
golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 // indirect
37-
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
38-
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
39-
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
36+
github.com/xanzy/ssh-agent v0.3.2 // indirect
37+
golang.org/x/crypto v0.1.0 // indirect
38+
golang.org/x/mod v0.6.0 // indirect
39+
golang.org/x/net v0.1.0 // indirect
40+
golang.org/x/sys v0.1.0 // indirect
41+
golang.org/x/time v0.1.0 // indirect
42+
golang.org/x/tools v0.2.0 // indirect
4043
google.golang.org/appengine v1.6.7 // indirect
41-
google.golang.org/protobuf v1.28.0 // indirect
44+
google.golang.org/protobuf v1.28.1 // indirect
4245
gopkg.in/warnings.v0 v0.1.2 // indirect
43-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
46+
gopkg.in/yaml.v3 v3.0.1 // indirect
4447
)

0 commit comments

Comments
 (0)