-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
34 lines (28 loc) · 956 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
28
29
30
31
32
33
34
module github.com/getoutreach/actions
go 1.22
toolchain go1.22.6
require (
github.com/bradleyfalzon/ghinstallation/v2 v2.12.0
github.com/getoutreach/goql v1.13.0
github.com/sethvargo/go-githubactions v1.3.0
github.com/slack-go/slack v0.15.0
github.com/stretchr/testify v1.9.0
)
require github.com/getoutreach/gobox v1.90.2 // indirect
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
github.com/google/go-github/v66 v66.0.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/google/go-github/v43 v43.0.0
github.com/pkg/errors v0.9.1
golang.org/x/oauth2 v0.24.0
)