Skip to content

Commit 9ca718d

Browse files
Merge pull request #664 from step-security/update-agent-v1.8.5
Update agent to v1.8.5
2 parents a5ad31d + 1dee3df commit 9ca718d

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
@@ -85456,15 +85456,15 @@ var external_crypto_ = __nccwpck_require__(6982);
8545685456

8545785457
const CHECKSUMS = {
8545885458
tls: {
85459-
amd64: "713c91e921292027dacf446db44bafbc8e36a3f7f51dff664ba681c6e4398a05",
85460-
arm64: "2c1eb365d6d9ae4cd4b6632a5f833bcdb7e75d0d9604de3391ff22e4e28e8d42",
85459+
amd64: "050af506ca0a64e7d478e9e80719042f3f9f0aa0a35e3b8d610c4ef6c759822e",
85460+
arm64: "60726403ea552a0f3148137b8ee77c7a4a12f7fde8639cb15686d2ff35834d58",
8546185461
},
8546285462
non_tls: {
8546385463
amd64: "e38de61e1afd98dd339bb9acce4996183875d482be1638fb198ab02b3e25bbef", // v0.16.0
8546485464
},
8546585465
bravo: {
85466-
amd64: "8d002af0c1c4bb73eaef0f2b641f7aa353cc3f4da36a4e418b69895a2baa922c",
85467-
arm64: "1ce74a30d704c2e994246fc809d65af83e3f354aae7b9080b2c2eaee715cf005",
85466+
amd64: "e91efce9def2a73193c6caddb89f56898d2bcbf3fff3ecd8c49fac33b15736e2",
85467+
arm64: "12345185744d7f2626d1f1aa1e6dbee460a41bea6520dd6f93058635c98376ab",
8546885468
},
8546985469
darwin: "fe26a1f6af4afe9f1a854d8633832f5d18ab542827003cae445b3a64021d612c",
8547085470
windows: {
@@ -85537,7 +85537,7 @@ function installAgent(isTLS, configStr) {
8553785537
encoding: "utf8",
8553885538
});
8553985539
if (isTLS) {
85540-
downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.2/harden-runner_1.8.2_linux_${variant}.tar.gz`, undefined, auth);
85540+
downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.5/harden-runner_1.8.5_linux_${variant}.tar.gz`, undefined, auth);
8554185541
}
8554285542
else {
8554385543
if (variant === "arm64") {
@@ -85572,7 +85572,7 @@ function installAgentBravo(configStr) {
8557285572
const token = lib_core.getInput("token", { required: true });
8557385573
const auth = `token ${token}`;
8557485574
const variant = process.arch === "x64" ? "amd64" : "arm64";
85575-
const downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.2/harden-runner-bravo_1.8.2_linux_${variant}.tar.gz`, undefined, auth);
85575+
const downloadPath = yield tool_cache.downloadTool(`https://github.com/step-security/agent-ebpf/releases/download/v1.8.5/harden-runner-bravo_1.8.5_linux_${variant}.tar.gz`, undefined, auth);
8557685576
if (!verifyChecksum(downloadPath, true, variant, "linux", "bravo")) {
8557785577
return false;
8557885578
}

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: "713c91e921292027dacf446db44bafbc8e36a3f7f51dff664ba681c6e4398a05", // v1.8.2
8-
arm64: "2c1eb365d6d9ae4cd4b6632a5f833bcdb7e75d0d9604de3391ff22e4e28e8d42",
7+
amd64: "050af506ca0a64e7d478e9e80719042f3f9f0aa0a35e3b8d610c4ef6c759822e", // v1.8.5
8+
arm64: "60726403ea552a0f3148137b8ee77c7a4a12f7fde8639cb15686d2ff35834d58",
99
},
1010
non_tls: {
1111
amd64: "e38de61e1afd98dd339bb9acce4996183875d482be1638fb198ab02b3e25bbef", // v0.16.0
1212
},
1313
bravo: {
14-
amd64: "8d002af0c1c4bb73eaef0f2b641f7aa353cc3f4da36a4e418b69895a2baa922c", // v1.8.2
15-
arm64: "1ce74a30d704c2e994246fc809d65af83e3f354aae7b9080b2c2eaee715cf005",
14+
amd64: "e91efce9def2a73193c6caddb89f56898d2bcbf3fff3ecd8c49fac33b15736e2", // v1.8.5
15+
arm64: "12345185744d7f2626d1f1aa1e6dbee460a41bea6520dd6f93058635c98376ab",
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.2/harden-runner_1.8.2_linux_${variant}.tar.gz`,
29+
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.5/harden-runner_1.8.5_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.2/harden-runner-bravo_1.8.2_linux_${variant}.tar.gz`,
79+
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.5/harden-runner-bravo_1.8.5_linux_${variant}.tar.gz`,
8080
undefined,
8181
auth
8282
);

0 commit comments

Comments
 (0)