mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-04-10 05:54:03 +00:00
Bump the builder image and versions to resolve CVEs: - GO-2026-4601 - GO-2026-4602 - GO-2026-4603 Signed-off-by: stevenhorsman <steven@uk.ibm.com>
24 lines
721 B
Modula-2
24 lines
721 B
Modula-2
module github.com/kata-containers/kata-containers/src/tools/log-parser
|
|
|
|
// Keep in sync with version in versions.yaml
|
|
go 1.25.8
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.1.0
|
|
github.com/go-logfmt/logfmt v0.5.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/stretchr/testify v1.7.1
|
|
github.com/urfave/cli v1.22.7
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // 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.0.1 // indirect
|
|
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
|
golang.org/x/sys v0.1.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|