-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (25 loc) · 882 Bytes
/
go.mod
File metadata and controls
28 lines (25 loc) · 882 Bytes
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
module github.com/drone/runner-go
go 1.24.0
require (
github.com/99designs/basicauth-go v0.0.0-20230316000542-bf6f9cbbf0f8
github.com/bmatcuk/doublestar v1.3.4
github.com/buildkite/yaml v2.1.0+incompatible
github.com/coreos/go-semver v0.3.1
github.com/docker/go-units v0.4.0
github.com/drone/drone-go v1.7.1
github.com/drone/envsubst v1.0.3
github.com/google/go-cmp v0.6.0
github.com/hashicorp/go-multierror v1.1.1
github.com/natessilva/dag v0.0.0-20180124060714-7194b8dcc5c4
github.com/sirupsen/logrus v1.9.4
golang.org/x/crypto v0.45.0
golang.org/x/sync v0.18.0
)
require (
github.com/99designs/httpsignatures-go v0.0.0-20170731043157-88528bf4ca7e // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.40.0 // indirect
golang.org/x/text v0.31.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)