From f0cbcbb60d23dbf4a747d9d1ba5291f052f7d14a Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 13 Mar 2026 17:52:48 +0000 Subject: [PATCH] chore(ci): bump timeout from 30s to 60s --- ci/internal/simple.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/internal/simple.go b/ci/internal/simple.go index 46043eb6..6b696e97 100644 --- a/ci/internal/simple.go +++ b/ci/internal/simple.go @@ -17,7 +17,7 @@ import ( func ptrTo[T any](v T) *T { return &v } func simpleTest(ctx context.Context, env []string, logger Logger) error { - const timeout = 30 * time.Second + const timeout = 60 * time.Second ctx, cancel := context.WithTimeout(ctx, timeout) defer cancel()