From ff87759b4847ece883b91609e6ec25cddfd1bc3c Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 23 Nov 2021 09:13:17 +0100
Subject: [PATCH] refactor: getCurrentVersion params

---
 lib/workers/repository/process/lookup/current.ts | 5 ++---
 lib/workers/repository/process/lookup/index.ts   | 6 ++++--
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/lib/workers/repository/process/lookup/current.ts b/lib/workers/repository/process/lookup/current.ts
index 94f8d12fd4..0b7113f703 100644
--- a/lib/workers/repository/process/lookup/current.ts
+++ b/lib/workers/repository/process/lookup/current.ts
@@ -2,16 +2,15 @@ import is from '@sindresorhus/is';
 import { logger } from '../../../../logger';
 import { regEx } from '../../../../util/regex';
 import type { VersioningApi } from '../../../../versioning/types';
-import type { LookupUpdateConfig } from './types';
 
 export function getCurrentVersion(
-  config: LookupUpdateConfig,
+  currentValue: string,
+  lockedVersion: string,
   versioning: VersioningApi,
   rangeStrategy: string,
   latestVersion: string,
   allVersions: string[]
 ): string | null {
-  const { currentValue, lockedVersion } = config;
   // istanbul ignore if
   if (!is.string(currentValue)) {
     return null;
diff --git a/lib/workers/repository/process/lookup/index.ts b/lib/workers/repository/process/lookup/index.ts
index ae5165ca94..22041898d1 100644
--- a/lib/workers/repository/process/lookup/index.ts
+++ b/lib/workers/repository/process/lookup/index.ts
@@ -170,14 +170,16 @@ export async function lookupUpdates(
         .map((release) => release.version);
       const currentVersion =
         getCurrentVersion(
-          config,
+          currentValue,
+          lockedVersion,
           versioning,
           rangeStrategy,
           latestVersion,
           nonDeprecatedVersions
         ) ||
         getCurrentVersion(
-          config,
+          currentValue,
+          lockedVersion,
           versioning,
           rangeStrategy,
           latestVersion,
-- 
GitLab