blob: 3e0dd95d9e3d3e361f28a1df69115f3c6a166a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module github.com/argoproj-labs/argocd-image-updater/registry-scanner
go 1.22.3
require (
github.com/argoproj-labs/argocd-image-updater v0.14.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
)
require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.20.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
|