diff --git a/apps/meteor/app/cloud/server/functions/getWorkspaceAccessTokenWithScope.ts b/apps/meteor/app/cloud/server/functions/getWorkspaceAccessTokenWithScope.ts
index 92ff94a4b8f0e52aa612b89b246b3c9d431dc211..3a04031ebb88e3c869729d9ba579cd1214e63545 100644
--- a/apps/meteor/app/cloud/server/functions/getWorkspaceAccessTokenWithScope.ts
+++ b/apps/meteor/app/cloud/server/functions/getWorkspaceAccessTokenWithScope.ts
@@ -45,7 +45,7 @@ export async function getWorkspaceAccessTokenWithScope(scope = '', throwOnError
 			headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
 			method: 'POST',
 			body,
-			timeout: 3000,
+			timeout: 5000,
 		});
 
 		payload = await response.json();
diff --git a/apps/meteor/app/cloud/server/functions/supportedVersionsToken/supportedVersionsToken.ts b/apps/meteor/app/cloud/server/functions/supportedVersionsToken/supportedVersionsToken.ts
index dd933107d57c4674cb72c3b30c2fca181c17a112..473acef88c29a754aecd1b62cbf7815e5c8bd3b3 100644
--- a/apps/meteor/app/cloud/server/functions/supportedVersionsToken/supportedVersionsToken.ts
+++ b/apps/meteor/app/cloud/server/functions/supportedVersionsToken/supportedVersionsToken.ts
@@ -103,7 +103,7 @@ const getSupportedVersionsFromCloud = async () => {
 	const response = await handleResponse<SupportedVersions>(
 		fetch(releaseEndpoint, {
 			headers,
-			timeout: 3000,
+			timeout: 5000,
 		}),
 	);
 
diff --git a/apps/meteor/app/cloud/server/functions/syncWorkspace/legacySyncWorkspace.ts b/apps/meteor/app/cloud/server/functions/syncWorkspace/legacySyncWorkspace.ts
index 2bff8e1526d2acc3bd52968f2b722f620c994fcc..91202d97317089f2a1486a258203dbafa84a4258 100644
--- a/apps/meteor/app/cloud/server/functions/syncWorkspace/legacySyncWorkspace.ts
+++ b/apps/meteor/app/cloud/server/functions/syncWorkspace/legacySyncWorkspace.ts
@@ -98,7 +98,7 @@ const fetchWorkspaceClientPayload = async ({
 			Authorization: `Bearer ${token}`,
 		},
 		body: workspaceRegistrationData,
-		timeout: 3000,
+		timeout: 5000,
 	});
 
 	if (!response.ok) {