Skip to content

Commit

Permalink
Merge pull request #6263 from inteon/cleanup_imports
Browse files Browse the repository at this point in the history
Cleanup go.mod files
  • Loading branch information
jetstack-bot committed Aug 10, 2023
2 parents 3552219 + df0d6f2 commit 1c22f06
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
4 changes: 4 additions & 0 deletions cmd/acmesolver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module github.com/cert-manager/cert-manager/acmesolver-binary

go 1.20

// Do not remove this comment:
// please place any replace statements here at the top for visibility and add a
// comment to it as to when it can be removed

replace github.com/cert-manager/cert-manager => ../../

require (
Expand Down
4 changes: 4 additions & 0 deletions cmd/cainjector/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module github.com/cert-manager/cert-manager/cainjector-binary

go 1.20

// Do not remove this comment:
// please place any replace statements here at the top for visibility and add a
// comment to it as to when it can be removed

replace github.com/cert-manager/cert-manager => ../../

require (
Expand Down
4 changes: 4 additions & 0 deletions cmd/controller/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module github.com/cert-manager/cert-manager/controller-binary

go 1.20

// Do not remove this comment:
// please place any replace statements here at the top for visibility and add a
// comment to it as to when it can be removed

replace github.com/cert-manager/cert-manager => ../../

require (
Expand Down
4 changes: 4 additions & 0 deletions cmd/webhook/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module github.com/cert-manager/cert-manager/webhook-binary

go 1.20

// Do not remove this comment:
// please place any replace statements here at the top for visibility and add a
// comment to it as to when it can be removed

replace github.com/cert-manager/cert-manager => ../../

require (
Expand Down
10 changes: 6 additions & 4 deletions test/e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ module github.com/cert-manager/cert-manager/e2e-tests

go 1.20

// Do not remove this comment:
// please place any replace statements here at the top for visibility and add a
// comment to it as to when it can be removed

replace github.com/cert-manager/cert-manager => ../../

require (
github.com/cert-manager/cert-manager v0.0.0-00010101000000-000000000000
github.com/cloudflare/cloudflare-go v0.58.1
Expand Down Expand Up @@ -100,7 +106,3 @@ require (
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)

replace github.com/miekg/dns v1.1.41 => github.com/miekg/dns v1.1.34

replace github.com/cert-manager/cert-manager => ../../

0 comments on commit 1c22f06

Please sign in to comment.