From 627676f9c3783d73837a7e4bd2a54c20c477f012 Mon Sep 17 00:00:00 2001 From: Darren Kelly Date: Wed, 12 Jun 2024 17:01:07 +0100 Subject: [PATCH] fix: is it working? --- action/dist/index.js | 2 +- action/src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action/dist/index.js b/action/dist/index.js index 0d9853a..cd87d72 100644 --- a/action/dist/index.js +++ b/action/dist/index.js @@ -30754,7 +30754,7 @@ async function setup() { return } // Download the specific version of the tool, e.g. as a tarball - const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, token); + const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, `token ${token}`); // Expose the tool by adding it to the PATH core.addPath(pathToCLI) diff --git a/action/src/index.js b/action/src/index.js index 4683413..e9d6bd7 100644 --- a/action/src/index.js +++ b/action/src/index.js @@ -68,7 +68,7 @@ async function setup() { return } // Download the specific version of the tool, e.g. as a tarball - const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, token); + const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, `token ${token}`); // Expose the tool by adding it to the PATH core.addPath(pathToCLI)