-
Notifications
You must be signed in to change notification settings - Fork 49
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: refer v2.0.0 in README #375
docs: refer v2.0.0 in README #375
Conversation
Signed-off-by: Shunsuke Suzuki <suzuki.shunsuke.1989@gmail.com>
#373 has been merged. So this pr is ready. |
@@ -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.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, sorry. I found this doesn't work. 🙇♂️
To install slsa-verifier v2 by go install, we have to release v2.0.1 or later.
go install github.com/slsa-framework/slsa-verifier/v2/cli/slsa-verifier@v2.0.0
go: github.com/slsa-framework/slsa-verifier/v2/cli/slsa-verifier@v2.0.0: github.com/slsa-framework/slsa-verifier@v2.0.0: invalid version: module contains a go.mod file, so module path must match major version ("github.com/slsa-framework/slsa-verifier/v2")
I'll send a pull request to fix the document.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created the pr.
#375 (comment) I found this doesn't work. To install slsa-verifier v2 by go install, we have to release v2.0.1 or later. ``` go install github.com/slsa-framework/slsa-verifier/v2/cli/slsa-verifier@v2.0.0 go: github.com/slsa-framework/slsa-verifier/v2/cli/slsa-verifier@v2.0.0: github.com/slsa-framework/slsa-verifier@v2.0.0: invalid version: module contains a go.mod file, so module path must match major version ("github.com/slsa-framework/slsa-verifier/v2") ``` Signed-off-by: Shunsuke Suzuki <suzuki.shunsuke.1989@gmail.com> Signed-off-by: Shunsuke Suzuki <suzuki.shunsuke.1989@gmail.com>
* updates * updates Co-authored-by: asraa <asraa@google.com>
Depends on #373