From 6bd56630b33851c962228f38a9d84d76f19b763e Mon Sep 17 00:00:00 2001 From: Dor Fire Date: Mon, 20 Feb 2023 10:24:50 +0200 Subject: [PATCH] built --- dist/post_run/index.js | 1 - dist/run/index.js | 1 - src/install.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/dist/post_run/index.js b/dist/post_run/index.js index 4e2fb64..eb09d8e 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -67685,7 +67685,6 @@ function installLint(versionConfig) { return __awaiter(this, void 0, void 0, function* () { core.info(`Installing golangci-lint ${versionConfig.TargetVersion}...`); const startedAt = Date.now(); - core.info(`asset-url: ${core.getInput('asset-url')}`); const assetURL = core.getInput('asset-url') || getAssetURL(versionConfig); core.info(`Downloading ${assetURL} ...`); const archivePath = yield tc.downloadTool(assetURL); diff --git a/dist/run/index.js b/dist/run/index.js index 64f5b3f..87b53c3 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -67685,7 +67685,6 @@ function installLint(versionConfig) { return __awaiter(this, void 0, void 0, function* () { core.info(`Installing golangci-lint ${versionConfig.TargetVersion}...`); const startedAt = Date.now(); - core.info(`asset-url: ${core.getInput('asset-url')}`); const assetURL = core.getInput('asset-url') || getAssetURL(versionConfig); core.info(`Downloading ${assetURL} ...`); const archivePath = yield tc.downloadTool(assetURL); diff --git a/src/install.ts b/src/install.ts index 04d907f..ab4ec03 100644 --- a/src/install.ts +++ b/src/install.ts @@ -35,7 +35,6 @@ const getAssetURL = (versionConfig: VersionConfig): string => { export async function installLint(versionConfig: VersionConfig): Promise { core.info(`Installing golangci-lint ${versionConfig.TargetVersion}...`) const startedAt = Date.now() - core.info(`asset-url: ${core.getInput('asset-url')}`) const assetURL = core.getInput('asset-url') || getAssetURL(versionConfig) core.info(`Downloading ${assetURL} ...`) const archivePath = await tc.downloadTool(assetURL)