Skip to content

Commit 774f75f

Browse files
committed
Update agent to v1.8.9
1 parent f312657 commit 774f75f

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

dist/pre/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85466,15 +85466,15 @@ var external_crypto_ = __nccwpck_require__(6982);
8546685466

8546785467
const CHECKSUMS = {
8546885468
tls: {
85469-
amd64: "d58a9c1c5245155ce4c71507a61e213a29925a7c39c0d20bfd00bef0d281bdbb", // v1.8.6
85470-
arm64: "084fa95e74d17321dd1c37c93abeb8577e53ddf5266410e19f52aa79a02ae33e",
85469+
amd64: "614c0cd8d873c28fe30cf2e6a7c12f751802966ac766029fc5a4ca8cfd474eaf", // v1.8.9
85470+
arm64: "6dd323fd5716aba5a27a942618f0c5ce63576a682d4c943b04c5bb13f1adaf44",
8547185471
},
8547285472
non_tls: {
8547385473
amd64: "e38de61e1afd98dd339bb9acce4996183875d482be1638fb198ab02b3e25bbef", // v0.16.0
8547485474
},
8547585475
bravo: {
85476-
amd64: "495f607a891d89f12214849301f247bdca565afe67deb170fe7e5d6d361852ca", // v1.8.6
85477-
arm64: "f96f66ab946097aae1fc887e12fe1cefcc5d510bce179221c7185374e4adf538",
85476+
amd64: "572488e4e3fd82c5883841986a4a73c9f22183fe01f65ed03aa7493941898dfc", // v1.8.9
85477+
arm64: "44605f788a06c4cd38dbfb39513cae54e13524146681c805f439f656c9641d79",
8547885478
},
8547985479
darwin: "fe26a1f6af4afe9f1a854d8633832f5d18ab542827003cae445b3a64021d612c", // v0.0.5
8548085480
windows: {
@@ -85547,7 +85547,7 @@ function installAgent(isTLS, configStr) {
8554785547
encoding: "utf8",
8554885548
});
8554985549
if (isTLS) {
85550-
downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.6/harden-runner_1.8.6_linux_${variant}.tar.gz`, undefined, auth);
85550+
downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.9/harden-runner_1.8.9_linux_${variant}.tar.gz`, undefined, auth);
8555185551
}
8555285552
else {
8555385553
if (variant === "arm64") {
@@ -85582,7 +85582,7 @@ function installAgentBravo(configStr) {
8558285582
const token = lib_core.getInput("token", { required: true });
8558385583
const auth = `token ${token}`;
8558485584
const variant = process.arch === "x64" ? "amd64" : "arm64";
85585-
const downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.6/harden-runner-bravo_1.8.6_linux_${variant}.tar.gz`, undefined, auth);
85585+
const downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.9/harden-runner-bravo_1.8.9_linux_${variant}.tar.gz`, undefined, auth);
8558685586
if (!verifyChecksum(downloadPath, true, variant, "linux", "bravo")) {
8558785587
return false;
8558885588
}

dist/pre/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/checksum.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ import * as fs from "fs";
44

55
export const CHECKSUMS = {
66
tls: {
7-
amd64: "d58a9c1c5245155ce4c71507a61e213a29925a7c39c0d20bfd00bef0d281bdbb", // v1.8.6
8-
arm64: "084fa95e74d17321dd1c37c93abeb8577e53ddf5266410e19f52aa79a02ae33e",
7+
amd64: "614c0cd8d873c28fe30cf2e6a7c12f751802966ac766029fc5a4ca8cfd474eaf", // v1.8.9
8+
arm64: "6dd323fd5716aba5a27a942618f0c5ce63576a682d4c943b04c5bb13f1adaf44",
99
},
1010
non_tls: {
1111
amd64: "e38de61e1afd98dd339bb9acce4996183875d482be1638fb198ab02b3e25bbef", // v0.16.0
1212
},
1313
bravo: {
14-
amd64: "495f607a891d89f12214849301f247bdca565afe67deb170fe7e5d6d361852ca", // v1.8.6
15-
arm64: "f96f66ab946097aae1fc887e12fe1cefcc5d510bce179221c7185374e4adf538",
14+
amd64: "572488e4e3fd82c5883841986a4a73c9f22183fe01f65ed03aa7493941898dfc", // v1.8.9
15+
arm64: "44605f788a06c4cd38dbfb39513cae54e13524146681c805f439f656c9641d79",
1616
},
1717
darwin: "fe26a1f6af4afe9f1a854d8633832f5d18ab542827003cae445b3a64021d612c", // v0.0.5
1818
windows: {

src/install-agent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function installAgent(
2626

2727
if (isTLS) {
2828
downloadPath = await tc.downloadTool(
29-
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.6/harden-runner_1.8.6_linux_${variant}.tar.gz`,
29+
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.9/harden-runner_1.8.9_linux_${variant}.tar.gz`,
3030
undefined,
3131
auth
3232
);
@@ -76,7 +76,7 @@ export async function installAgentBravo(configStr: string): Promise<boolean> {
7676

7777
const variant = process.arch === "x64" ? "amd64" : "arm64";
7878
const downloadPath = await tc.downloadTool(
79-
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.6/harden-runner-bravo_1.8.6_linux_${variant}.tar.gz`,
79+
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.9/harden-runner-bravo_1.8.9_linux_${variant}.tar.gz`,
8080
undefined,
8181
auth
8282
);

0 commit comments

Comments
 (0)