diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js
index 4a22d0d8f4b0c83eb749d4e5b6ef0bf0b2e6a77d..7b5aa4b92d5ddc884cdd02cc3a310bb1ef9b0d37 100644
--- a/lib/workers/branch/index.js
+++ b/lib/workers/branch/index.js
@@ -81,7 +81,12 @@ async function processBranch(branchConfig) {
       return;
     }
   } catch (err) {
-    logger.error({ err }, `Error updating branch: ${err.message}`);
+    if (err.message !== 'lockFileError') {
+      logger.error({ err }, `Error updating branch: ${err.message}`);
+    } else {
+      logger.info('Error updating branch');
+    }
+    // Don't throw here - we don't want to stop the other renovations
     return;
   }
   try {