-
Notifications
You must be signed in to change notification settings - Fork 58
/
go.mod
40 lines (36 loc) · 1.47 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
module github.com/concourse/github-release-resource
go 1.23
toolchain go1.23.2
require (
github.com/Masterminds/semver v1.5.0
github.com/cppforlife/go-semi-semantic v0.0.0-20160921010311-576b6af77ae4
github.com/google/go-github/v39 v39.2.0
github.com/google/go-github/v66 v66.0.0
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/onsi/ginkgo v1.14.2
github.com/onsi/gomega v1.34.2
github.com/shurcooL/githubv4 v0.0.0-20210922025249-6831e00d857f
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
)
require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/maxbrunsfeld/counterfeiter/v6 v6.10.0 // indirect
github.com/nxadm/tail v1.4.5 // indirect
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/tools v0.26.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)