Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions dist/pre/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85456,15 +85456,15 @@ var external_crypto_ = __nccwpck_require__(6982);

const CHECKSUMS = {
tls: {
amd64: "713c91e921292027dacf446db44bafbc8e36a3f7f51dff664ba681c6e4398a05",
arm64: "2c1eb365d6d9ae4cd4b6632a5f833bcdb7e75d0d9604de3391ff22e4e28e8d42",
amd64: "050af506ca0a64e7d478e9e80719042f3f9f0aa0a35e3b8d610c4ef6c759822e",
arm64: "60726403ea552a0f3148137b8ee77c7a4a12f7fde8639cb15686d2ff35834d58",
},
non_tls: {
amd64: "e38de61e1afd98dd339bb9acce4996183875d482be1638fb198ab02b3e25bbef", // v0.16.0
},
bravo: {
amd64: "8d002af0c1c4bb73eaef0f2b641f7aa353cc3f4da36a4e418b69895a2baa922c",
arm64: "1ce74a30d704c2e994246fc809d65af83e3f354aae7b9080b2c2eaee715cf005",
amd64: "e91efce9def2a73193c6caddb89f56898d2bcbf3fff3ecd8c49fac33b15736e2",
arm64: "12345185744d7f2626d1f1aa1e6dbee460a41bea6520dd6f93058635c98376ab",
},
darwin: "fe26a1f6af4afe9f1a854d8633832f5d18ab542827003cae445b3a64021d612c",
windows: {
Expand Down Expand Up @@ -85537,7 +85537,7 @@ function installAgent(isTLS, configStr) {
encoding: "utf8",
});
if (isTLS) {
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);
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);
}
else {
if (variant === "arm64") {
Expand Down Expand Up @@ -85572,7 +85572,7 @@ function installAgentBravo(configStr) {
const token = lib_core.getInput("token", { required: true });
const auth = `token ${token}`;
const variant = process.arch === "x64" ? "amd64" : "arm64";
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);
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);
if (!verifyChecksum(downloadPath, true, variant, "linux", "bravo")) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/pre/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/checksum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import * as fs from "fs";

export const CHECKSUMS = {
tls: {
amd64: "713c91e921292027dacf446db44bafbc8e36a3f7f51dff664ba681c6e4398a05", // v1.8.2
arm64: "2c1eb365d6d9ae4cd4b6632a5f833bcdb7e75d0d9604de3391ff22e4e28e8d42",
amd64: "050af506ca0a64e7d478e9e80719042f3f9f0aa0a35e3b8d610c4ef6c759822e", // v1.8.5
arm64: "60726403ea552a0f3148137b8ee77c7a4a12f7fde8639cb15686d2ff35834d58",
},
non_tls: {
amd64: "e38de61e1afd98dd339bb9acce4996183875d482be1638fb198ab02b3e25bbef", // v0.16.0
},
bravo: {
amd64: "8d002af0c1c4bb73eaef0f2b641f7aa353cc3f4da36a4e418b69895a2baa922c", // v1.8.2
arm64: "1ce74a30d704c2e994246fc809d65af83e3f354aae7b9080b2c2eaee715cf005",
amd64: "e91efce9def2a73193c6caddb89f56898d2bcbf3fff3ecd8c49fac33b15736e2", // v1.8.5
arm64: "12345185744d7f2626d1f1aa1e6dbee460a41bea6520dd6f93058635c98376ab",
},
darwin: "fe26a1f6af4afe9f1a854d8633832f5d18ab542827003cae445b3a64021d612c", // v0.0.5
windows: {
Expand Down
4 changes: 2 additions & 2 deletions src/install-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function installAgent(

if (isTLS) {
downloadPath = await tc.downloadTool(
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.2/harden-runner_1.8.2_linux_${variant}.tar.gz`,
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.5/harden-runner_1.8.5_linux_${variant}.tar.gz`,
undefined,
auth
);
Expand Down Expand Up @@ -76,7 +76,7 @@ export async function installAgentBravo(configStr: string): Promise<boolean> {

const variant = process.arch === "x64" ? "amd64" : "arm64";
const downloadPath = await tc.downloadTool(
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.2/harden-runner-bravo_1.8.2_linux_${variant}.tar.gz`,
`https://github.com/step-security/agent-ebpf/releases/download/v1.8.5/harden-runner-bravo_1.8.5_linux_${variant}.tar.gz`,
undefined,
auth
);
Expand Down
Loading