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: Update slsa-verifier version #689

Merged
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## X.Y.Z

### Fixed in X.Y.Z

- Fixed the "error updating to TUF remote mirror: invalid key" error
([#688](https://github.com/ianlewis/todo-issue-reopener/issues/688)).

## [1.2.0] - 2024-02-21

### Fixed in 1.2.0
Expand Down
5 changes: 3 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,9 @@ const github = __importStar(__nccwpck_require__(5438));
const verifier = __importStar(__nccwpck_require__(5854));
const process_1 = __nccwpck_require__(7282);
const TODOS_VERSION = "v0.8.0";
const SLSA_VERIFIER_VERSION = "v2.3.0";
const SLSA_VERIFIER_SHA256SUM = "ea687149d658efecda64d69da999efb84bb695a3212f29548d4897994027172d";
const SLSA_VERIFIER_VERSION = "v2.5.1";
// See: https://github.com/slsa-framework/slsa-verifier/blob/main/SHA256SUM.md
const SLSA_VERIFIER_SHA256SUM = "54e4f40bf120bce1cef1ff123fef3456e8c526f315c47e22ed6acfe02a06b9a8";
class ReopenError extends Error {
constructor(message) {
super(message);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/reopener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ import * as config from "./config";
import { env } from "process";

const TODOS_VERSION = "v0.8.0";
const SLSA_VERIFIER_VERSION = "v2.3.0";
const SLSA_VERIFIER_VERSION = "v2.5.1";
// See: https://github.com/slsa-framework/slsa-verifier/blob/main/SHA256SUM.md
const SLSA_VERIFIER_SHA256SUM =
"ea687149d658efecda64d69da999efb84bb695a3212f29548d4897994027172d";
"54e4f40bf120bce1cef1ff123fef3456e8c526f315c47e22ed6acfe02a06b9a8";

export class ReopenError extends Error {
constructor(message: string) {
Expand Down
Loading