1
0
Fork 0
mirror of synced 2026-06-05 15:04:04 +00:00

update agent

This commit is contained in:
Varun Sharma 2026-03-18 00:19:43 -07:00
commit 80c020557c
4 changed files with 7 additions and 7 deletions

6
dist/pre/index.js vendored
View file

@ -85392,8 +85392,8 @@ var external_crypto_ = __nccwpck_require__(6982);
const CHECKSUMS = { const CHECKSUMS = {
tls: { tls: {
amd64: "19c35eee1347077eb71306b122ad4a1cf83f36ef0f69fd91b0c0d79ffd0eabdd", amd64: "30fca1b76d21361e4976e763e15dc939a40d9aea3b009a799af185a5344aafa7",
arm64: "f9192788e86b2e44b795f072e8cc03eec9852649609aeedac0761d3b67c991fa", arm64: "766e04e216300240a577402ddea659887b22b43bcd5d436d868d0802db4a3a77",
}, },
non_tls: { non_tls: {
amd64: "1531bda40026b799b0704d0f775c372653a91fe436628fa8b416849d9c0707a8", // v0.14.4 amd64: "1531bda40026b799b0704d0f775c372653a91fe436628fa8b416849d9c0707a8", // v0.14.4
@ -85464,7 +85464,7 @@ function installAgent(isTLS, configStr) {
encoding: "utf8", encoding: "utf8",
}); });
if (isTLS) { if (isTLS) {
downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.7.10/harden-runner_1.7.10_linux_${variant}.tar.gz`, undefined, auth); downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.7.14/harden-runner_1.7.14_linux_${variant}.tar.gz`, undefined, auth);
} }
else { else {
if (variant === "arm64") { if (variant === "arm64") {

File diff suppressed because one or more lines are too long

View file

@ -4,8 +4,8 @@ import * as fs from "fs";
const CHECKSUMS = { const CHECKSUMS = {
tls: { tls: {
amd64: "19c35eee1347077eb71306b122ad4a1cf83f36ef0f69fd91b0c0d79ffd0eabdd", // v1.7.10 amd64: "30fca1b76d21361e4976e763e15dc939a40d9aea3b009a799af185a5344aafa7", // v1.7.14
arm64: "f9192788e86b2e44b795f072e8cc03eec9852649609aeedac0761d3b67c991fa", arm64: "766e04e216300240a577402ddea659887b22b43bcd5d436d868d0802db4a3a77",
}, },
non_tls: { non_tls: {
amd64: "1531bda40026b799b0704d0f775c372653a91fe436628fa8b416849d9c0707a8", // v0.14.4 amd64: "1531bda40026b799b0704d0f775c372653a91fe436628fa8b416849d9c0707a8", // v0.14.4

View file

@ -26,7 +26,7 @@ export async function installAgent(
if (isTLS) { if (isTLS) {
downloadPath = await tc.downloadTool( downloadPath = await tc.downloadTool(
`https://github.com/step-security/agent-ebpf/releases/download/v1.7.10/harden-runner_1.7.10_linux_${variant}.tar.gz`, `https://github.com/step-security/agent-ebpf/releases/download/v1.7.14/harden-runner_1.7.14_linux_${variant}.tar.gz`,
undefined, undefined,
auth auth
); );