22 Commits

Author SHA1 Message Date
Ramon Petgrave
748161aaed chore: update docs for v2.7.1 (#860)
#label:release v2.7.1

Updating docs for v2.7.1


https://github.com/slsa-framework/slsa-verifier/blob/main/RELEASE.md#update-documentation

```
$ mkdir artifacts
$ cd artifacts/
$ gh release download v2.7.1
$ sha256sum * | grep -v .intoto.jsonl
4baf25415727821f847a38bccedc86c3e5b17cbfc2eb534cd554feb6c856d6f1  slsa-verifier-darwin-amd64
39abfcf5f1d690c3e889ce3d2d6a8b87711424d83368511868d414e8f8bcb05c  slsa-verifier-darwin-arm64
946dbec729094195e88ef78e1734324a27869f03e2c6bd2f61cbc06bd5350339  slsa-verifier-linux-amd64
5d3b2349ede7bfec19e7a21569f18b9f7410145ad12e9584b175370669e14061  slsa-verifier-linux-arm64
1d8f61ad747ecc3d375d2a563cebf2991748b7da1a9bda9a500804c3c499e3c0  slsa-verifier-windows-amd64.exe
44144e98328d221f0490ef6b4a58a465defe8f697f387abbbf07ef5adb68d4ac  slsa-verifier-windows-arm64.exe
```

---------

Signed-off-by: Ramon Petgrave <32398091+ramonpetgrave64@users.noreply.github.com>
2025-06-27 13:40:25 -04:00
Ramon Petgrave
9825851f50 chore: Update docs for v2.7.0 (#829)
#label:release v2.7.0

Updates docs to reference the new v2.7.0 release.

**How to verify**

Clone the repo and run the script described in
https://github.com/slsa-framework/slsa-verifier/blob/main/RELEASE.md#verify-provenance.
```
git clone git@github.com:slsa-framework/slsa-verifier.git
cd slsa-verifier
chmod +x verify-release.sh
GH_TOKEN=`gh auth token` bash verify-release.sh v2.7.0
```

Using the temp directory logged from the above command

```
cd <logged temp directory from running verify-release.sh>
sha256sum * | grep -v "intoto"      
36694b43ab23be234add09272e5faf77349d7e267bf65c01dc9bcdf58c4f496e  slsa-verifier-darwin-amd64
84d9122ce12e0c79080844285fd5c4976407ed3463e434a1b21b0979c46b1e55  slsa-verifier-darwin-arm64
499befb675efcca9001afe6e5156891b91e71f9c07ab120a8943979f85cc82e6  slsa-verifier-linux-amd64
dc3845d7605f666a0938389c1c5735230e50b32a547867ffd351fb14df928167  slsa-verifier-linux-arm64
61ff8b1cca6ac0012b0ba906367836f64a389444766be437df2a69f71285f43b  slsa-verifier-windows-amd64.exe
ddf58798049599c44caf299b6a9cf8a41760daa94ee208bdae8aa78fc75dcb2b  slsa-verifier-windows-arm64.exe
```

Confirm your output checksums matches those in this PR's changes for
SHA256SUM.md.

---------

Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
2025-02-10 12:36:28 -05:00
Ramon Petgrave
d96b977709 chore: v2.6.0: update docs (#789)
#label:release v2.6.0

# How to Verify

Clone the repo and run the script described in
https://github.com/slsa-framework/slsa-verifier/blob/main/RELEASE.md#verify-provenance.
```
$ git clone git@github.com:slsa-framework/slsa-verifier.git
$ cd slsa-verifier
$ bash verify-release.sh v2.6.0
```

This will download the release files and verify the binaries. Confirm
that the output hashes matches those in this PR's SHA256SUM.md
-
https://github.com/slsa-framework/slsa-verifier/pull/789/files#diff-7834ca792905514302a0630d1c57dc1d330569a18fc2fff4aac6129efb00f4ccR1-R8

---------

Signed-off-by: Ramon Petgrave <32398091+ramonpetgrave64@users.noreply.github.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
2024-07-17 12:21:44 -04:00
laurentsimon
f315652a8c chore: Update doc and digests for v2.5.1 (#748)
This sets the expected sha256 of the v2.5.1 slsa-verifier released
binary.

How to LGTM this PR (I'll work on a proper doc for this in
https://github.com/slsa-framework/slsa-github-generator/issues/112):

1. Download the binary and provenance from
https://github.com/slsa-framework/slsa-verifier/releases/tag/v0.0.1
2. Clone the slsa-verifier repo, compile and verify the provenance using
the steps described in
https://github.com/slsa-framework/slsa-verifier/blob/main/RELEASE.md#verify-provenance
```
$ git clone git@github.com:slsa-framework/slsa-verifier.git
$ cd slsa-verifier
$ bash verify-release.sh v2.5.1
```

The output hash should be the hash I'm updating to in this PR. If they
match, LGTM. If they don't, someone tampered with the released binary
and don't LGTM

---------

Signed-off-by: laurentsimon <laurentsimon@google.com>
2024-03-26 08:11:24 -07:00
laurentsimon
e986dfc0ff feat: Digest for new release (#722)
#label:release v2.4.1

How to LGTM this PR:

Ensure you have installed the GitHub client from https://cli.github.com.
If it is not installed in your `PATH`, set `export GH=/path/to/your/gh`

Set your `export GH_TOKEN=...`

Use [verify-release.sh](./verify-release.sh) script in this repository:
```
bash verify-release v2.4.1
```

Once it completes, you will see the last line `Verifying artifact
/tmp/tmp.SomeRanDOm/` and do:
```bash
sha256sum /tmp/tmp.SomeRanDOm/* | grep -v intoto
```

This will print out the hashes. Compare them to the changes in this PR

---------

Signed-off-by: laurentsimon <laurentsimon@google.com>
2023-11-07 17:23:25 -08:00
laurentsimon
d23c97947e chore: Update doc for v2.4.0 (#699)
How to LGTM this PR (I'll work on a proper doc for this in
https://github.com/slsa-framework/slsa-github-generator/issues/112):

1.  Clone repo
```
$ git clone git@github.com:slsa-framework/slsa-verifier.git 
$ cd slsa-verifier
$ bash verify-release.sh v2.4.0 # NOTE: use the file in _this_ PR.
# Note down the path to the temporary dir use. The bash script will print its first line as "INFO: using dir: /tmp/tmp.VaYi6HfbmL"
```
2. Run command below and compare to SHA256SUM.md in this PR
```
$sha256sum /tmp/tmp.VaYi6HfbmL/*
```

The output hash should be the hash I'm updating to in this PR. If they
match, LGTM. If they don't, someone tampered with the released binary
and don't LGTM

---------

Signed-off-by: laurentsimon <laurentsimon@google.com>
2023-08-25 12:09:40 -07:00
Ian Lewis
f59b55ef21 chore: Update SHA256SUM.md for v2.3.0 (#592)
Signed-off-by: Ian Lewis <ianlewis@google.com>
2023-05-12 08:23:56 +09:00
Ian Lewis
62c0dfdde9 docs: Update docs for 2.2.0 release. (#556)
* Update SHA256SUM.md

Signed-off-by: Ian Lewis <ianlewis@google.com>

* Update version in docs

Signed-off-by: Ian Lewis <ianlewis@google.com>

---------

Signed-off-by: Ian Lewis <ianlewis@google.com>
Co-authored-by: laurentsimon <64505099+laurentsimon@users.noreply.github.com>
2023-04-13 19:15:15 +00:00
asraa
e8ce5c0204 chore: update docs for release v2.1.0 (#530)
* chore: update docs for release v2.1.0

Signed-off-by: Asra Ali <asraa@google.com>

---------

Signed-off-by: Asra Ali <asraa@google.com>
2023-03-17 15:07:25 +00:00
asraa
0bd7a542b4 docs: update docs for release v2.0.1 (#403)
Signed-off-by: Asra Ali <asraa@google.com>

Signed-off-by: Asra Ali <asraa@google.com>
2022-12-14 16:11:34 +00:00
Shunsuke Suzuki
798db79f54 docs: add the checksum of v2.0.0 (#374)
Signed-off-by: Shunsuke Suzuki <suzuki.shunsuke.1989@gmail.com>
Co-authored-by: Ian Lewis <ianlewis@google.com>
2022-12-02 12:22:14 +09:00
asraa
26f422b6b2 add new releases (#347)
Signed-off-by: Asra Ali <asraa@google.com>

Signed-off-by: Asra Ali <asraa@google.com>
2022-11-01 09:38:26 +09:00
asraa
168f9c3568 release: add release hash for v1.1.2 and v1.0.4 (#291)
* release: add hash for v1.1.2

Signed-off-by: Asra Ali <asraa@google.com>

* add releaes v1.0

Signed-off-by: Asra Ali <asraa@google.com>

Signed-off-by: Asra Ali <asraa@google.com>
2022-10-04 09:41:40 +09:00
asraa
e269a00945 release: add release v1.3.1 and v1.2.1 (#288)
* release: add release v1.3.1 and v1.2.1

Signed-off-by: Asra Ali <asraa@google.com>
2022-10-03 10:27:24 -05:00
asraa
71cf0397cd release: add v1.0.3 (#235)
Signed-off-by: Asra Ali <asraa@google.com>

Signed-off-by: Asra Ali <asraa@google.com>
2022-08-29 09:48:21 -07:00
asraa
ccb0786c88 release: release v1.3.0 of verifier (#218)
Signed-off-by: Asra Ali <asraa@google.com>

Signed-off-by: Asra Ali <asraa@google.com>
2022-08-15 13:50:24 -07:00
asraa
ad90b50548 release: add notes for release v1.2.0 (#171)
Signed-off-by: Asra Ali <asraa@google.com>
2022-07-25 11:49:49 -07:00
asraa
74c0ac257e release: v1.0.1 patch release (#142)
Signed-off-by: Asra Ali <asraa@google.com>
2022-07-12 11:41:57 -05:00
asraa
588ddc4344 add v1.1.1 hash (#114)
Signed-off-by: Asra Ali <asraa@google.com>
2022-06-29 17:39:18 +00:00
asraa
5110b6efc4 update to release 1.1.0 (#104)
Signed-off-by: Asra Ali <asraa@google.com>
2022-06-20 21:35:08 +00:00
asraa
2a0dd1c120 Update documentation for release v1.0.0 (#85)
Signed-off-by: Asra Ali <asraa@google.com>
2022-06-07 15:53:22 -07:00
laurentsimon
21527372e3 📖 Release process for the verifier (#71)
* release for the verifier

* updates

* updates

* updates

* updates

* updates

* updates

* updates

* updates

* updates

* updates

* comments

* updates
2022-06-02 01:20:24 +00:00