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

docs: update docs for release v2.0.1 #403

Merged
merged 3 commits into from
Dec 14, 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
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,21 +120,21 @@ You have two options to install the verifier.
#### Option 1: Install via go

```
$ go install github.com/slsa-framework/slsa-verifier/cli/slsa-verifier@v1.3.2
$ go install github.com/slsa-framework/slsa-verifier/v2/cli/slsa-verifier@v2.0.1
$ slsa-verifier <options>
```

#### Option 2: Compile manually

```
$ git clone [email protected]:slsa-framework/slsa-verifier.git
$ cd slsa-verifier && git checkout v2.0.0
$ cd slsa-verifier && git checkout v2.0.1
$ go run ./cli/slsa-verifier <options>
```

### Download the binary

Download the binary from the latest release at [https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.0.0](https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.0.0)
Download the binary from the latest release at [https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.0.1](https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.0.1)

Download the [SHA256SUM.md](https://github.com/slsa-framework/slsa-verifier/blob/main/SHA256SUM.md).

Expand Down Expand Up @@ -268,6 +268,20 @@ FAILED: SLSA verification failed: could not find a matching valid signature entr

This issue is tracked by [issue #325](https://github.com/slsa-framework/slsa-verifier/issues/325). You _must_ update to the newest patch versions of each minor release to fix this issue.

### panic: assignment to entry in nil map

This will occur only when verifying provenance against workflow inputs.

**Affected versions:** v2.0.0

`slsa-verifier` will fail with the following error:

```
panic: assignment to entry in nil map
```

This is fixed by [PR #379](https://github.com/slsa-framework/slsa-verifier/pull/379). You _must_ update to the newest patch versions of each minor release to fix this issue.

## Technical design

### Blog post
Expand Down
3 changes: 3 additions & 0 deletions SHA256SUM.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### [v2.0.1](https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.0.1)
ad4b408c43504d439827998c27ab4be1c44ff467ccb39b78da01568f8542b10e slsa-verifier-linux-amd64

### [v2.0.0](https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.0.0)
8d2e93a9ea0126d5daec22f2778b42fea79192605d16955f0c91847c3a6a8921 slsa-verifier-linux-amd64

Expand Down