Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: TUF error in GHA installer #394

Merged
merged 1 commit into from
Dec 6, 2022
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
4 changes: 2 additions & 2 deletions actions/installer/dist/index.js
Original file line number Diff line number Diff line change
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 = "v1.3.0";
const BOOTSTRAP_VERIFIER_SHA256 = "1326430d044e8a9522c51e5f721e237b5f75acb6b4e518d129f669403cf7a79a";
const BOOTSTRAP_VERSION = "v2.0.0";
const BOOTSTRAP_VERIFIER_SHA256 = "8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921";
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import * as fs from "fs";
import * as os from "os";
import * as path from "path";

const BOOTSTRAP_VERSION = "v1.3.0";
const BOOTSTRAP_VERSION = "v2.0.0";
const BOOTSTRAP_VERIFIER_SHA256 =
"1326430d044e8a9522c51e5f721e237b5f75acb6b4e518d129f669403cf7a79a";
"8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921";
const BINARY_NAME = "slsa-verifier";
const PROVENANCE_NAME = "slsa-verifier-linux-amd64.intoto.jsonl";

Expand Down