-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
25 lines (22 loc) · 802 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
module github.com/cloud-gov/github-pr-resource
require (
github.com/google/go-github/v28 v28.1.1
github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1
github.com/shurcooL/githubv4 v0.0.0-20240429030203-be2daab69064
github.com/stretchr/testify v1.9.0
golang.org/x/oauth2 v0.21.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/tools v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.22