mirror of
https://github.com/harness-community/drone-email.git
synced 2026-07-16 16:11:00 +08:00
b984f31505
Bump Go builder to 1.25-alpine3.22, runtime base to alpine:3.22, and upgrade golang.org/x/crypto to v0.52.0, golang.org/x/net to v0.55.0, and Masterminds/goutils to v1.1.1. Resolves all 64 Trivy findings on plugins/email:4.0.2 (2 Critical / 40 High / 20 Medium / 2 Low → 0/0/0/0) without introducing any new CVEs. OnDemand baseline scan: Success (Connector=harnesssecure) OnDemand after-scan: Failed -- scheduler error (harnessdev/PROJECT) on docker.io connector path; needs manual re-run to confirm Prisma Cloud delta.
38 lines
1.4 KiB
Modula-2
38 lines
1.4 KiB
Modula-2
module github.com/drone-plugins/drone-email
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/aymerick/douceur v0.2.0
|
|
github.com/drone/drone-template-lib v1.0.0
|
|
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/urfave/cli v1.22.16
|
|
github.com/wneessen/go-mail v0.7.2
|
|
)
|
|
|
|
require (
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver v1.4.2 // indirect
|
|
github.com/Masterminds/sprig v2.18.0+incompatible // indirect
|
|
github.com/PuerkitoBio/goquery v1.10.3 // indirect
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
github.com/aymerick/raymond v2.0.2+incompatible // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
|
|
github.com/google/uuid v1.1.0 // indirect
|
|
github.com/gorilla/css v1.0.1 // indirect
|
|
github.com/huandu/xstrings v1.2.0 // indirect
|
|
github.com/imdario/mergo v0.3.7 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/pkg/errors v0.8.0 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
|
|
golang.org/x/crypto v0.52.0 // indirect
|
|
golang.org/x/net v0.55.0 // indirect
|
|
golang.org/x/sys v0.45.0 // indirect
|
|
golang.org/x/text v0.37.0 // indirect
|
|
)
|