Skip to content

Commit 8e72dd7

Browse files
authored
merge rules_mirror in (#37)
1 parent 3e443a6 commit 8e72dd7

File tree

1,104 files changed

+140100
-5857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,104 files changed

+140100
-5857
lines changed

MODULE.bazel.lock

Lines changed: 307 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
module github.com/fasterci/rules_gitops
22

3-
go 1.21
3+
go 1.20
44

55
require (
66
github.com/ghodss/yaml v1.0.0
7-
github.com/golang/protobuf v1.5.2
7+
github.com/golang/protobuf v1.5.3
88
github.com/google/go-cmp v0.5.9
9+
github.com/google/go-containerregistry v0.19.1
910
github.com/google/go-github/v32 v32.1.0
1011
github.com/xanzy/go-gitlab v0.80.2
11-
golang.org/x/oauth2 v0.5.0
12+
golang.org/x/oauth2 v0.8.0
1213
k8s.io/api v0.26.1
1314
k8s.io/apimachinery v0.26.1
1415
k8s.io/client-go v0.26.1
1516
)
1617

1718
require (
19+
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
1820
github.com/davecgh/go-spew v1.1.1 // indirect
21+
github.com/docker/cli v24.0.0+incompatible // indirect
22+
github.com/docker/distribution v2.8.2+incompatible // indirect
23+
github.com/docker/docker v24.0.0+incompatible // indirect
24+
github.com/docker/docker-credential-helpers v0.7.0 // indirect
1925
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
2026
github.com/go-logr/logr v1.2.3 // indirect
2127
github.com/go-openapi/jsonpointer v0.19.6 // indirect
@@ -28,22 +34,32 @@ require (
2834
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2935
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
3036
github.com/imdario/mergo v0.3.13 // indirect
37+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3138
github.com/josharian/intern v1.0.0 // indirect
3239
github.com/json-iterator/go v1.1.12 // indirect
40+
github.com/klauspost/compress v1.16.5 // indirect
3341
github.com/mailru/easyjson v0.7.7 // indirect
42+
github.com/mitchellh/go-homedir v1.1.0 // indirect
3443
github.com/moby/spdystream v0.2.0 // indirect
3544
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3645
github.com/modern-go/reflect2 v1.0.2 // indirect
3746
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
47+
github.com/opencontainers/go-digest v1.0.0 // indirect
48+
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
49+
github.com/pkg/errors v0.9.1 // indirect
50+
github.com/sirupsen/logrus v1.9.1 // indirect
51+
github.com/spf13/cobra v1.7.0 // indirect
3852
github.com/spf13/pflag v1.0.5 // indirect
39-
golang.org/x/crypto v0.6.0 // indirect
40-
golang.org/x/net v0.7.0 // indirect
41-
golang.org/x/sys v0.5.0 // indirect
42-
golang.org/x/term v0.5.0 // indirect
43-
golang.org/x/text v0.7.0 // indirect
53+
github.com/vbatts/tar-split v0.11.3 // indirect
54+
golang.org/x/crypto v0.14.0 // indirect
55+
golang.org/x/net v0.17.0 // indirect
56+
golang.org/x/sync v0.2.0 // indirect
57+
golang.org/x/sys v0.15.0 // indirect
58+
golang.org/x/term v0.13.0 // indirect
59+
golang.org/x/text v0.13.0 // indirect
4460
golang.org/x/time v0.3.0 // indirect
4561
google.golang.org/appengine v1.6.7 // indirect
46-
google.golang.org/protobuf v1.28.1 // indirect
62+
google.golang.org/protobuf v1.30.0 // indirect
4763
gopkg.in/inf.v0 v0.9.1 // indirect
4864
gopkg.in/yaml.v2 v2.4.0 // indirect
4965
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)