Skip to content

Commit eb70070

Browse files
authored
feat: Update verifier version in GHA installer (#747)
This is part of the release tests in https://github.com/slsa-framework/slsa-verifier/blob/main/RELEASE.md#dry-run to verify that the Action installer works. A follow up PR will be sent prior to release to update to `v2.5.0` --------- Signed-off-by: laurentsimon <[email protected]>
1 parent 594b179 commit eb70070

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

actions/installer/dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ const crypto = __importStar(__nccwpck_require__(6113));
6262
const fs = __importStar(__nccwpck_require__(7147));
6363
const os = __importStar(__nccwpck_require__(2037));
6464
const path = __importStar(__nccwpck_require__(1017));
65-
const BOOTSTRAP_VERSION = "v2.0.0";
66-
const BOOTSTRAP_VERIFIER_SHA256 = "8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921";
65+
const BOOTSTRAP_VERSION = "v2.5.1-rc.0";
66+
const BOOTSTRAP_VERIFIER_SHA256 = "ccd1edf540ceb9283688745069c041907e5f4cda9dd07a344e601cafb4d11dd2";
6767
const BINARY_NAME = "slsa-verifier";
6868
const PROVENANCE_NAME = "slsa-verifier-linux-amd64.intoto.jsonl";
6969
// If true, the input string conforms to slsa-verifier's versioning system.

actions/installer/dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/installer/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import * as fs from "fs";
2222
import * as os from "os";
2323
import * as path from "path";
2424

25-
const BOOTSTRAP_VERSION = "v2.0.0";
25+
const BOOTSTRAP_VERSION = "v2.5.1-rc.0";
2626
const BOOTSTRAP_VERIFIER_SHA256 =
27-
"8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921";
27+
"ccd1edf540ceb9283688745069c041907e5f4cda9dd07a344e601cafb4d11dd2";
2828
const BINARY_NAME = "slsa-verifier";
2929
const PROVENANCE_NAME = "slsa-verifier-linux-amd64.intoto.jsonl";
3030

0 commit comments

Comments
 (0)