Skip to content

Commit 4ad512f

Browse files
committed
Merge branch 'rc-21' into feat/container-workflows
2 parents 6b41a39 + fa70c45 commit 4ad512f

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

dist/pre/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88014,11 +88014,11 @@ var external_crypto_ = __nccwpck_require__(6417);
8801488014

8801588015
const CHECKSUMS = {
8801688016
tls: {
88017-
amd64: "e7c0c5f96efbf96806d27dcbf65f71f72ecd34cdd596c556bb2ded0f2037c260",
88018-
arm64: "813a4cd40f6740bd9623a40884a78f14960c6bd3794391693a165f2ca71c90e3",
88017+
amd64: "75c821517eefde0dc5a9309e6b6d01372c7ce7c061eeb36892a3718b0ab7506c",
88018+
arm64: "41e255e43ff95c26323692fc58d460db3ac503326a1d47589032e92723fe08d4",
8801988019
},
8802088020
non_tls: {
88021-
amd64: "f0a8bb49ce5480744f8c836af2abd5f311e918efef5b36b4cce7521d7b9dffe6", // v0.14.0
88021+
amd64: "336093af8ebe969567b66fd035af3bd4f7e1c723ce680d6b4b5b2a1f79bc329e", // v0.14.2
8802288022
},
8802388023
};
8802488024
function verifyChecksum(downloadPath, isTLS, variant) {
@@ -88068,14 +88068,14 @@ function installAgent(isTLS, configStr) {
8806888068
encoding: "utf8",
8806988069
});
8807088070
if (isTLS) {
88071-
downloadPath = yield tool_cache.downloadTool(`https://packages.stepsecurity.io/github-hosted/harden-runner_1.6.3_linux_${variant}.tar.gz`);
88071+
downloadPath = yield tool_cache.downloadTool(`https://packages.stepsecurity.io/github-hosted/harden-runner_1.6.10_linux_${variant}.tar.gz`);
8807288072
}
8807388073
else {
8807488074
if (variant === "arm64") {
8807588075
console.log(ARM64_RUNNER_MESSAGE);
8807688076
return false;
8807788077
}
88078-
downloadPath = yield tool_cache.downloadTool("https://github.com/step-security/agent/releases/download/v0.14.0/agent_0.14.0_linux_amd64.tar.gz", undefined, auth);
88078+
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);
8807988079
}
8808088080
verifyChecksum(downloadPath, isTLS, variant);
8808188081
const extractPath = yield tool_cache.extractTar(downloadPath);

dist/pre/index.js.map

Lines changed: 5 additions & 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import * as fs from "fs";
44

55
const CHECKSUMS = {
66
tls: {
7-
amd64: "e7c0c5f96efbf96806d27dcbf65f71f72ecd34cdd596c556bb2ded0f2037c260", // v1.6.3
8-
arm64: "813a4cd40f6740bd9623a40884a78f14960c6bd3794391693a165f2ca71c90e3",
7+
amd64: "75c821517eefde0dc5a9309e6b6d01372c7ce7c061eeb36892a3718b0ab7506c", // v1.6.10
8+
arm64: "41e255e43ff95c26323692fc58d460db3ac503326a1d47589032e92723fe08d4",
99
},
1010
non_tls: {
11-
amd64: "f0a8bb49ce5480744f8c836af2abd5f311e918efef5b36b4cce7521d7b9dffe6", // v0.14.0
11+
amd64: "336093af8ebe969567b66fd035af3bd4f7e1c723ce680d6b4b5b2a1f79bc329e", // v0.14.2
1212
},
1313
};
1414

src/install-agent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ export async function installAgent(
2525

2626
if (isTLS) {
2727
downloadPath = await tc.downloadTool(
28-
`https://packages.stepsecurity.io/github-hosted/harden-runner_1.6.3_linux_${variant}.tar.gz`
28+
`https://packages.stepsecurity.io/github-hosted/harden-runner_1.6.10_linux_${variant}.tar.gz`
2929
);
3030
} else {
3131
if (variant === "arm64") {
3232
console.log(ARM64_RUNNER_MESSAGE);
3333
return false;
3434
}
3535
downloadPath = await tc.downloadTool(
36-
"https://github.com/step-security/agent/releases/download/v0.14.0/agent_0.14.0_linux_amd64.tar.gz",
36+
"https://github.com/step-security/agent/releases/download/v0.14.2/agent_0.14.2_linux_amd64.tar.gz",
3737
undefined,
3838
auth
3939
);

0 commit comments

Comments
 (0)