From 669a12d66dc8ae6cc390bf59bf24922c28b0d399 Mon Sep 17 00:00:00 2001 From: Dor Date: Mon, 20 Feb 2023 09:25:25 +0200 Subject: [PATCH] Fix --- src/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.ts b/src/install.ts index b8f0e12..ab4ec03 100644 --- a/src/install.ts +++ b/src/install.ts @@ -35,7 +35,7 @@ const getAssetURL = (versionConfig: VersionConfig): string => { export async function installLint(versionConfig: VersionConfig): Promise { core.info(`Installing golangci-lint ${versionConfig.TargetVersion}...`) const startedAt = Date.now() - const assetURL = = core.getInput('asset-url') || getAssetURL(versionConfig) + const assetURL = core.getInput('asset-url') || getAssetURL(versionConfig) core.info(`Downloading ${assetURL} ...`) const archivePath = await tc.downloadTool(assetURL) let extractedDir = ""