diff --git a/lib/workers/repository/process/lookup/current.ts b/lib/workers/repository/process/lookup/current.ts
index 9656dd0e50e30b7456a4cbd9edc490b896e4e2b4..cd37363c50441ff65ff46f28a0090cb1e95f544c 100644
--- a/lib/workers/repository/process/lookup/current.ts
+++ b/lib/workers/repository/process/lookup/current.ts
@@ -16,6 +16,9 @@ export function getCurrentVersion(
     return null;
   }
   logger.trace(`currentValue ${currentValue} is range`);
+  if (allVersions.includes(currentValue)) {
+    return currentValue;
+  }
   let useVersions = allVersions.filter((v) =>
     versioning.matches(v, currentValue),
   );