fix download path

This commit is contained in:
Varun Sharma 2025-05-14 00:05:34 -07:00
commit f0cb479b0f
3 changed files with 3 additions and 3 deletions

2
dist/pre/index.js vendored
View file

@ -88068,7 +88068,7 @@ function installAgent(isTLS, configStr) {
console.log(ARM64_RUNNER_MESSAGE);
return false;
}
downloadPath = yield tool_cache.downloadTool("https://github.com/step-security/agent/releases/download/v0.14.1/agent_0.14.2_linux_amd64.tar.gz", undefined, auth);
downloadPath = yield tool_cache.downloadTool("https://github.com/step-security/agent/releases/download/v0.14.2/agent_0.14.2_linux_amd64.tar.gz", undefined, auth);
}
verifyChecksum(downloadPath, isTLS, variant);
const extractPath = yield tool_cache.extractTar(downloadPath);

File diff suppressed because one or more lines are too long

View file

@ -33,7 +33,7 @@ export async function installAgent(
return false;
}
downloadPath = await tc.downloadTool(
"https://github.com/step-security/agent/releases/download/v0.14.1/agent_0.14.2_linux_amd64.tar.gz",
"https://github.com/step-security/agent/releases/download/v0.14.2/agent_0.14.2_linux_amd64.tar.gz",
undefined,
auth
);