-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (26 loc) · 892 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
module github.com/hasanhakkaev/gitlab-runner-cleaner
go 1.20
require (
github.com/caarlos0/env/v8 v8.0.0
github.com/caarlos0/env/v9 v9.0.0
github.com/olekukonko/tablewriter v0.0.5
github.com/stretchr/testify v1.8.4
github.com/xanzy/go-gitlab v0.91.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/oauth2 v0.6.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.29.1 // indirect
)