From e6139ba304ebcb58b6da26799a4df0e7a81b4652 Mon Sep 17 00:00:00 2001 From: Amelia Downs Date: Fri, 21 Mar 2025 15:55:37 +0000 Subject: [PATCH] update key-size for test certs to be ready for go 1.24 --- depot/containerstore/proxy_config_handler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/depot/containerstore/proxy_config_handler_test.go b/depot/containerstore/proxy_config_handler_test.go index 01d327b0..fc263517 100644 --- a/depot/containerstore/proxy_config_handler_test.go +++ b/depot/containerstore/proxy_config_handler_test.go @@ -997,7 +997,7 @@ var _ = Describe("ProxyConfigHandler", func() { func generateCertAndKey() (string, string, *big.Int) { // generate a real cert - privateKey, err := rsa.GenerateKey(rand.Reader, 512) + privateKey, err := rsa.GenerateKey(rand.Reader, 2048) Expect(err).ToNot(HaveOccurred()) template := x509.Certificate{ SerialNumber: new(big.Int),