mirror of
https://github.com/appleboy/drone-jenkins.git
synced 2026-06-04 18:23:57 +08:00
0326a42ccb
- Remove Go 1.21 from the lint workflow - Update Go version to 1.22 in go.mod - Upgrade dependencies: `godotenv` to v1.5.1, `testify` to v1.9.0, `cli` to v1.22.15 - Add new indirect dependencies: `go-md2man/v2`, `go-spew`, `go-difflib`, `blackfriday/v2`, `yaml.v3` Signed-off-by: appleboy <appleboy.tw@gmail.com>
18 lines
419 B
Modula-2
18 lines
419 B
Modula-2
module github.com/appleboy/drone-jenkins
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/urfave/cli v1.22.15
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|