-
Notifications
You must be signed in to change notification settings - Fork 12
/
go.mod
37 lines (32 loc) · 1.31 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
module github.com/synacktiv/octoscan
go 1.21.10
toolchain go1.21.11
// well I have a PR that is not merged: https://github.com/rhysd/actionlint/pull/332
// and I can"t use go install with replace directive: https://github.com/golang/go/issues/44840
// do you have any idea ?
replace github.com/rhysd/actionlint => github.com/hugo-syn/actionlint v0.0.0-20240620182217-ad2709b475db
require (
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/fatih/color v1.17.0
github.com/google/go-github v17.0.0+incompatible
github.com/google/osv-scanner v1.7.4
github.com/hashicorp/go-version v1.7.0
github.com/rhysd/actionlint v1.7.1
golang.org/x/oauth2 v0.19.0
)
require (
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/package-url/packageurl-go v0.1.3 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.20.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)