2022-04-27 12:45:53 +03:00
module gitea . com / gitea / act_runner
go 1.18
require (
2022-11-22 07:22:19 +03:00
code . gitea . io / bots - proto - go v0 . 1.0
2022-09-25 13:54:00 +03:00
github . com / avast / retry - go / v4 v4 . 1.0
2022-11-22 07:22:19 +03:00
github . com / bufbuild / connect - go v1 . 1.0
2022-11-22 10:34:13 +03:00
github . com / docker / docker v20 . 10.21 + incompatible
2022-07-27 06:36:48 +03:00
github . com / joho / godotenv v1 . 4.0
2022-07-21 04:36:17 +03:00
github . com / kelseyhightower / envconfig v1 . 4.0
2022-09-25 13:54:00 +03:00
github . com / mattn / go - isatty v0 . 0.16
2022-11-22 10:34:13 +03:00
github . com / nektos / act v0 . 0.0
2022-08-12 09:59:58 +03:00
github . com / sirupsen / logrus v1 . 9.0
2022-11-22 10:34:13 +03:00
github . com / spf13 / cobra v1 . 6.1
2022-09-25 13:54:00 +03:00
golang . org / x / sync v0 . 0.0 - 20220819030929 - 7 fc1605a5dde
google . golang . org / protobuf v1 . 28.1
2022-04-27 12:45:53 +03:00
)
require (
github . com / Masterminds / semver v1 . 5.0 / / indirect
2022-08-12 09:59:58 +03:00
github . com / Microsoft / go - winio v0 . 5.2 / / indirect
github . com / Microsoft / hcsshim v0 . 9.3 / / indirect
github . com / ProtonMail / go - crypto v0 . 0.0 - 20220404123522 - 616 f957b79ad / / indirect
2022-04-27 12:45:53 +03:00
github . com / acomagu / bufpipe v1 . 0.3 / / indirect
github . com / containerd / cgroups v1 . 0.3 / / indirect
2022-08-12 09:59:58 +03:00
github . com / containerd / containerd v1 . 6.6 / / indirect
2022-11-22 10:34:13 +03:00
github . com / docker / cli v20 . 10.21 + incompatible / / indirect
2022-04-27 12:45:53 +03:00
github . com / docker / distribution v2 . 8.1 + incompatible / / indirect
github . com / docker / docker - credential - helpers v0 . 6.4 / / indirect
github . com / docker / go - connections v0 . 4.0 / / indirect
github . com / docker / go - units v0 . 4.0 / / indirect
github . com / emirpasic / gods v1 . 12.0 / / indirect
github . com / fatih / color v1 . 13.0 / / indirect
github . com / go - git / gcfg v1 . 5.0 / / indirect
github . com / go - git / go - billy / v5 v5 . 3.1 / / indirect
github . com / go - git / go - git / v5 v5 . 4.2 / / indirect
2022-09-25 13:54:00 +03:00
github . com / go - ini / ini v1 . 67.0 / / indirect
2022-04-27 12:45:53 +03:00
github . com / gogo / protobuf v1 . 3.2 / / indirect
github . com / golang / groupcache v0 . 0.0 - 20210331224755 - 41 bb18bfe9da / / indirect
2022-11-22 10:34:13 +03:00
github . com / google / shlex v0 . 0.0 - 20191202100458 - e7afc7fbc510 / / indirect
github . com / imdario / mergo v0 . 3.13 / / indirect
github . com / inconshreveable / mousetrap v1 . 0.1 / / indirect
2022-04-27 12:45:53 +03:00
github . com / jbenet / go - context v0 . 0.0 - 20150711004518 - d14ea06fba99 / / indirect
github . com / julienschmidt / httprouter v1 . 3.0 / / indirect
github . com / kballard / go - shellquote v0 . 0.0 - 20180428030007 - 95032 a82bc51 / / indirect
2022-08-12 09:59:58 +03:00
github . com / kevinburke / ssh_config v1 . 2.0 / / indirect
2022-09-25 13:54:00 +03:00
github . com / mattn / go - colorable v0 . 1.13 / / indirect
2022-04-27 12:45:53 +03:00
github . com / mattn / go - runewidth v0 . 0.13 / / indirect
github . com / mitchellh / go - homedir v1 . 1.0 / / indirect
2022-11-22 10:34:13 +03:00
github . com / mitchellh / mapstructure v1 . 1.2 / / indirect
github . com / moby / buildkit v0 . 10.5 / / indirect
2022-08-12 09:59:58 +03:00
github . com / moby / sys / mount v0 . 3.1 / / indirect
2022-04-27 12:45:53 +03:00
github . com / moby / sys / mountinfo v0 . 6.0 / / indirect
github . com / opencontainers / go - digest v1 . 0.0 / / indirect
2022-08-12 09:59:58 +03:00
github . com / opencontainers / image - spec v1 . 0.3 - 0.20211202183452 - c5a74bcca799 / / indirect
github . com / opencontainers / runc v1 . 1.2 / / indirect
2022-11-22 10:34:13 +03:00
github . com / opencontainers / selinux v1 . 10.2 / / indirect
2022-04-27 12:45:53 +03:00
github . com / pkg / errors v0 . 9.1 / / indirect
2022-11-22 10:34:13 +03:00
github . com / rhysd / actionlint v1 . 6.21 / / indirect
2022-09-25 13:54:00 +03:00
github . com / rivo / uniseg v0 . 3.4 / / indirect
2022-04-27 12:45:53 +03:00
github . com / robfig / cron v1 . 2.0 / / indirect
github . com / sergi / go - diff v1 . 2.0 / / indirect
github . com / spf13 / pflag v1 . 0.5 / / indirect
github . com / xanzy / ssh - agent v0 . 3.1 / / indirect
2022-11-22 10:34:13 +03:00
github . com / xeipuuv / gojsonpointer v0 . 0.0 - 20180127040702 - 4 e3ac2762d5f / / indirect
github . com / xeipuuv / gojsonreference v0 . 0.0 - 20180127040603 - bd5ef7bd5415 / / indirect
github . com / xeipuuv / gojsonschema v0 . 0.0 - 20180618132009 - 1 d523034197f / / indirect
2022-04-27 12:45:53 +03:00
go . opencensus . io v0 . 23.0 / / indirect
2022-08-12 09:59:58 +03:00
golang . org / x / crypto v0 . 0.0 - 20220331220935 - ae2d96664a29 / / indirect
2022-11-29 05:35:59 +03:00
golang . org / x / net v0 . 0.0 - 20220906165146 - f3363e06e74c / / indirect
2022-09-25 13:54:00 +03:00
golang . org / x / sys v0 . 0.0 - 20220818161305 - 2296 e01440c6 / / indirect
2022-08-12 09:59:58 +03:00
golang . org / x / term v0 . 0.0 - 20210927222741 - 03 fcf44c2211 / / indirect
2022-04-27 12:45:53 +03:00
gopkg . in / warnings . v0 v0 . 1.2 / / indirect
2022-11-22 10:34:13 +03:00
gopkg . in / yaml . v2 v2 . 4.0 / / indirect
2022-08-12 09:59:58 +03:00
gopkg . in / yaml . v3 v3 . 0.1 / / indirect
2022-04-27 12:45:53 +03:00
)
2022-07-27 06:36:48 +03:00
2022-11-24 09:47:51 +03:00
replace github . com / nektos / act = > gitea . com / gitea / act v0 . 233.5