mirror of
https://github.com/vee1e/KubeArmor.git
synced 2026-09-01 18:27:29 +00:00
Resolves: - GO-2026-5970: golang.org/x/text v0.38.0 -> v0.39.0 - GO-2026-5856: crypto/tls (stdlib) go1.26.4 -> go1.26.5 - GO-2026-4970: os (stdlib) go1.26.4 -> go1.26.5 Updates all 6 modules (KubeArmor, tests, protobuf, deployments, KubeArmorController, KubeArmorOperator) to ensure govulncheck passes cleanly in CI. Signed-off-by: Sagar Khandagre <sagar.khandagre998@gmail.com>
24 lines
698 B
Modula-2
24 lines
698 B
Modula-2
module github.com/kubearmor/KubeArmor/protobuf
|
|
|
|
go 1.26.5
|
|
|
|
replace (
|
|
github.com/go-jose/go-jose/v4 => github.com/go-jose/go-jose/v4 v4.1.4
|
|
github.com/kubearmor/KubeArmor => ../
|
|
github.com/kubearmor/KubeArmor/protobuf => ./
|
|
github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.18
|
|
github.com/pkg/sftp => github.com/pkg/sftp v1.11.0
|
|
golang.org/x/image => golang.org/x/image v0.7.0
|
|
)
|
|
|
|
require (
|
|
google.golang.org/grpc v1.81.1
|
|
google.golang.org/protobuf v1.36.11
|
|
)
|
|
|
|
require (
|
|
golang.org/x/net v0.55.0 // indirect
|
|
golang.org/x/sys v0.45.0 // indirect
|
|
golang.org/x/text v0.39.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260519071638-aa98bba5eb94 // indirect
|
|
)
|