mirror of
https://github.com/appleboy/drone-ssh.git
synced 2025-05-09 18:23:21 +08:00

- Update Go version from 1.22 to 1.23 - Upgrade golang.org/x/crypto from version 0.29.0 to 0.36.0 - Upgrade golang.org/x/sys from version 0.27.0 to 0.31.0 - Change Docker image in GitHub Actions from golang:1.22-alpine to golang:1.23-alpine Signed-off-by: appleboy <appleboy.tw@gmail.com>
25 lines
769 B
Modula-2
25 lines
769 B
Modula-2
module github.com/appleboy/drone-ssh
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/appleboy/easyssh-proxy v1.5.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/stretchr/testify v1.8.4
|
|
github.com/urfave/cli/v2 v2.27.5
|
|
github.com/yassinebenaid/godump v0.11.1
|
|
golang.org/x/crypto v0.36.0
|
|
)
|
|
|
|
require (
|
|
github.com/ScaleFT/sshkeys v1.2.0 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dchest/bcrypt_pbkdf v0.0.0-20150205184540-83f37f9c154a // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|