1
0
Fork 0
mirror of synced 2026-06-05 14:58:19 +00:00

update agent

This commit is contained in:
Varun Sharma 2026-02-06 16:51:21 -08:00
commit eb43c7b3fd
4 changed files with 5 additions and 5 deletions

4
dist/pre/index.js vendored
View file

@ -85499,7 +85499,7 @@ const CHECKSUMS = {
arm64: "f9192788e86b2e44b795f072e8cc03eec9852649609aeedac0761d3b67c991fa", arm64: "f9192788e86b2e44b795f072e8cc03eec9852649609aeedac0761d3b67c991fa",
}, },
non_tls: { non_tls: {
amd64: "336093af8ebe969567b66fd035af3bd4f7e1c723ce680d6b4b5b2a1f79bc329e", // v0.14.2 amd64: "23715f2485c16e2a2ad116abf0fe8443788c62e4f5f224c5858b0b41b591fc89", // v0.14.3
}, },
}; };
function verifyChecksum(downloadPath, isTLS, variant) { function verifyChecksum(downloadPath, isTLS, variant) {
@ -85556,7 +85556,7 @@ function installAgent(isTLS, configStr) {
console.log(ARM64_RUNNER_MESSAGE); console.log(ARM64_RUNNER_MESSAGE);
return false; return false;
} }
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); downloadPath = yield tool_cache.downloadTool("https://github.com/step-security/agent/releases/download/v0.14.3/agent_0.14.3_linux_amd64.tar.gz", undefined, auth);
} }
verifyChecksum(downloadPath, isTLS, variant); verifyChecksum(downloadPath, isTLS, variant);
const extractPath = yield tool_cache.extractTar(downloadPath); const extractPath = yield tool_cache.extractTar(downloadPath);

File diff suppressed because one or more lines are too long

View file

@ -8,7 +8,7 @@ const CHECKSUMS = {
arm64: "f9192788e86b2e44b795f072e8cc03eec9852649609aeedac0761d3b67c991fa", arm64: "f9192788e86b2e44b795f072e8cc03eec9852649609aeedac0761d3b67c991fa",
}, },
non_tls: { non_tls: {
amd64: "336093af8ebe969567b66fd035af3bd4f7e1c723ce680d6b4b5b2a1f79bc329e", // v0.14.2 amd64: "23715f2485c16e2a2ad116abf0fe8443788c62e4f5f224c5858b0b41b591fc89", // v0.14.3
}, },
}; };

View file

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