Skip to content

Commit

Permalink
fix: test?
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Jun 12, 2024
1 parent f0f5a9a commit 88c714e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30754,9 +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, undefined, {
authorization: `Bearer ${token}`
});
const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, token);

// Expose the tool by adding it to the PATH
core.addPath(pathToCLI)
Expand Down
4 changes: 1 addition & 3 deletions action/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +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, undefined, {
authorization: `Bearer ${token}`
});
const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, token);

// Expose the tool by adding it to the PATH
core.addPath(pathToCLI)
Expand Down

0 comments on commit 88c714e

Please sign in to comment.