From 6b9924479ff2bcfe3d1443575677c65f6b9ec9f2 Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Fri, 13 Sep 2024 16:56:36 -0700 Subject: [PATCH] wip: testing --- forge/actions/install/src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forge/actions/install/src/main.js b/forge/actions/install/src/main.js index 92f07a82..34f6cefb 100644 --- a/forge/actions/install/src/main.js +++ b/forge/actions/install/src/main.js @@ -28,7 +28,7 @@ async function run() { } core.info(`Downloading version ${version} from ${assetUrl}`); - const downloadPath = await tc.downloadTool(assetUrl); + const downloadPath = await tc.downloadTool(assetUrl, "", githubToken); const extractPath = await tc.extractTar(downloadPath); core.addPath(extractPath); @@ -126,7 +126,7 @@ async function getVersionedAsset(octokit, version) { return asset.browser_download_url; } -async function installLocal() {} +async function installLocal() { } /** * Checks if the given version is a valid semantic version.