Skip to content

Commit

Permalink
feat: Update verifier version in GHA installer (#747)
Browse files Browse the repository at this point in the history
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 <laurentsimon@google.com>
  • Loading branch information
laurentsimon committed Mar 25, 2024
1 parent 594b179 commit eb70070
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions actions/installer/dist/index.js
Expand Up @@ -62,8 +62,8 @@ const crypto = __importStar(__nccwpck_require__(6113));
const fs = __importStar(__nccwpck_require__(7147));
const os = __importStar(__nccwpck_require__(2037));
const path = __importStar(__nccwpck_require__(1017));
const BOOTSTRAP_VERSION = "v2.0.0";
const BOOTSTRAP_VERIFIER_SHA256 = "8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921";
const BOOTSTRAP_VERSION = "v2.5.1-rc.0";
const BOOTSTRAP_VERIFIER_SHA256 = "ccd1edf540ceb9283688745069c041907e5f4cda9dd07a344e601cafb4d11dd2";
const BINARY_NAME = "slsa-verifier";
const PROVENANCE_NAME = "slsa-verifier-linux-amd64.intoto.jsonl";
// If true, the input string conforms to slsa-verifier's versioning system.
Expand Down
2 changes: 1 addition & 1 deletion actions/installer/dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions actions/installer/src/index.ts
Expand Up @@ -22,9 +22,9 @@ import * as fs from "fs";
import * as os from "os";
import * as path from "path";

const BOOTSTRAP_VERSION = "v2.0.0";
const BOOTSTRAP_VERSION = "v2.5.1-rc.0";
const BOOTSTRAP_VERIFIER_SHA256 =
"8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921";
"ccd1edf540ceb9283688745069c041907e5f4cda9dd07a344e601cafb4d11dd2";
const BINARY_NAME = "slsa-verifier";
const PROVENANCE_NAME = "slsa-verifier-linux-amd64.intoto.jsonl";

Expand Down

0 comments on commit eb70070

Please sign in to comment.