Files
actions-runner-controller/go.mod

22 lines
749 B
Modula-2
Raw Normal View History

2020-01-28 15:03:23 +09:00
module github.com/summerwind/actions-runner-controller
2020-11-10 17:16:04 +09:00
go 1.15
2020-01-28 15:03:23 +09:00
require (
2020-01-28 21:58:01 +09:00
github.com/bradleyfalzon/ghinstallation v1.1.1
github.com/davecgh/go-spew v1.1.1
2020-01-28 15:03:23 +09:00
github.com/go-logr/logr v0.1.0
github.com/google/go-github/v33 v33.0.1-0.20210204004227-319dcffb518a
github.com/gorilla/mux v1.8.0
github.com/kelseyhightower/envconfig v1.4.0
2020-01-28 15:03:23 +09:00
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.0
github.com/stretchr/testify v1.4.0 // indirect
2020-01-28 21:58:01 +09:00
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
k8s.io/api v0.0.0-20190918155943-95b840bb6a1f
2020-01-28 15:03:23 +09:00
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
k8s.io/client-go v0.0.0-20190918160344-1fbdaa4c8d90
k8s.io/utils v0.0.0-20190801114015-581e00157fb1
2020-01-28 15:03:23 +09:00
sigs.k8s.io/controller-runtime v0.4.0
)