-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cert-manager-1.13: remove manual bumps as released upstream
Signed-off-by: James Rawlings <[email protected]>
- Loading branch information
Showing
1 changed file
with
0 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,27 +30,6 @@ pipeline: | |
# the makefile hardcodes the requirement for some container runtime (CTR), even when we don't need it | ||
# to workaround, set CTR to anything $(command -v)able | ||
- runs: | | ||
for mod in controller webhook cainjector acmesolver ctl; do | ||
cd cmd/$mod | ||
# CVE-2023-39325 and CVE-2023-3978 | ||
go get golang.org/x/[email protected] | ||
# CVE-2023-47108 | ||
go get go.opentelemetry.io/contrib/instrumentation/net/http/[email protected] | ||
go get go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/[email protected] | ||
go get go.opentelemetry.io/otel/exporters/otlp/otlptrace/[email protected] | ||
# GHSA-jq35-85cj-fj4p | ||
go get github.com/docker/[email protected] | ||
go get oras.land/[email protected] | ||
# GHSA-2c7c-3mj9-8fqh | ||
go get github.com/go-jose/go-jose/[email protected] | ||
go mod tidy | ||
cd ../.. | ||
done | ||
make CTR=make _bin/server/controller-linux-$(go env GOARCH) | ||
make CTR=make _bin/server/webhook-linux-$(go env GOARCH) | ||
make CTR=make _bin/server/cainjector-linux-$(go env GOARCH) | ||
|