-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathgo.mod
27 lines (24 loc) · 993 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/cloudfoundry-community/github-pr-instances-resource
require (
github.com/google/go-github/v28 v28.1.1
github.com/maxbrunsfeld/counterfeiter/v6 v6.2.3
github.com/shurcooL/githubv4 v0.0.0-20230424031643-6cea62ecd5a9
github.com/stretchr/testify v1.3.0
github.com/telia-oss/github-pr-resource v0.23.0
golang.org/x/oauth2 v0.8.0
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shurcooL/graphql v0.0.0-20220606043923-3cf50f8a0a29 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/mod v0.2.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/tools v0.0.0-20200423205358-59e73619c742 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.30.0 // indirect
)
go 1.20