Skip to content

Commit cec2eb1

Browse files
committed
Upgrade Go version and mod dependencies
1 parent a231533 commit cec2eb1

File tree

3 files changed

+30
-557
lines changed

3 files changed

+30
-557
lines changed

.github/workflows/build-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
- go.sum
1818

1919
env:
20-
GO_VERSION: 1.16.7
20+
GO_VERSION: 1.19.3
2121

2222
jobs:
2323
build:

go.mod

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
module github.com/upsidr/merge-gatekeeper
22

3-
go 1.16
3+
go 1.19
44

55
require (
66
github.com/google/go-github/v38 v38.1.0
7+
github.com/spf13/cobra v1.6.1
8+
golang.org/x/oauth2 v0.2.0
9+
)
10+
11+
require (
12+
github.com/golang/protobuf v1.5.2 // indirect
713
github.com/google/go-querystring v1.1.0 // indirect
8-
github.com/spf13/cobra v1.2.1
9-
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
14+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
15+
github.com/spf13/pflag v1.0.5 // indirect
16+
golang.org/x/crypto v0.3.0 // indirect
17+
golang.org/x/net v0.2.0 // indirect
18+
google.golang.org/appengine v1.6.7 // indirect
19+
google.golang.org/protobuf v1.28.1 // indirect
1020
)

0 commit comments

Comments
 (0)