diff --git a/lib/datasource/helm/index.ts b/lib/datasource/helm/index.ts
index 4fe514a226bb3a06caac078eb843d7dc2736194f..ad29e34943920d16eff7634fba65fcf8bb4436f3 100644
--- a/lib/datasource/helm/index.ts
+++ b/lib/datasource/helm/index.ts
@@ -40,7 +40,11 @@ export async function getRepositoryData(
       return null;
     }
     // istanbul ignore if
-    if (err.code === 'ENOTFOUND' || err.code === 'EAI_AGAIN') {
+    if (
+      err.code === 'ENOTFOUND' ||
+      err.code === 'EAI_AGAIN' ||
+      err.code === 'ETIMEDOUT'
+    ) {
       logger.debug({ err }, 'Could not connect to helm repository');
       return null;
     }