Skip to content

Commit 9ac6fe8

Browse files
committed
Update all builder and generators to use slsa-verifier v2.4.2
Signed-off-by: laurentsimon <[email protected]>
1 parent 40a99e7 commit 9ac6fe8

7 files changed

+28
-11
lines changed

.github/workflows/scripts/e2e.container-based.default.verify.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ echo "DEBUG: file is ${this_file}"
6060
export SLSA_VERIFIER_EXPERIMENTAL="1"
6161
export SLSA_VERIFIER_TESTING="true"
6262

63-
e2e_run_verifier_all_releases "HEAD"
63+
# Verify provenance authenticity with min version at release v2.4.1
64+
# Due to the breaking change below, we only need to verify starting at v2.4.1
65+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
66+
e2e_run_verifier_all_releases "v2.4.1"
6467

6568
# Verify the provenance content.
6669
verify_provenance_content

.github/workflows/scripts/e2e.container.default.verify.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ echo "DEBUG: file is ${this_file}"
4343
export SLSA_VERIFIER_TESTING="true"
4444

4545
# Verify provenance authenticity.
46-
e2e_run_verifier_all_releases "HEAD"
46+
# Verify provenance authenticity with min version at release v2.4.1
47+
# Due to the breaking change below, we only need to verify starting at v2.4.1
48+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
49+
e2e_run_verifier_all_releases "v2.4.1"
4750

4851
# Verify provenance content.
4952
verify_provenance_content

.github/workflows/scripts/e2e.delegator.default.verify.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ echo "DEBUG: file is ${this_file}"
5656

5757
export SLSA_VERIFIER_TESTING="true"
5858

59-
# Verify provenance authenticity.
60-
# TODO(233): Update to v1.8.0 tag.
61-
e2e_run_verifier_all_releases "HEAD"
59+
# Verify provenance authenticity with min version at release v2.4.1
60+
# Due to the breaking change below, we only need to verify starting at v2.4.1
61+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
62+
e2e_run_verifier_all_releases "v2.4.1"
6263

6364
# Verify provenance content.
6465
verify_provenance_content

.github/workflows/scripts/e2e.generic.default.verify.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,10 @@ echo "DEBUG: file is ${this_file}"
6969

7070
export SLSA_VERIFIER_TESTING="true"
7171

72-
# Verify provenance authenticity.
73-
e2e_run_verifier_all_releases "v1.1.0"
72+
# Verify provenance authenticity with min version at release v2.4.1
73+
# Due to the breaking change below, we only need to verify starting at v2.4.1
74+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
75+
e2e_run_verifier_all_releases "v2.4.1"
7476

7577
# Verify the provenance content.
7678
verify_provenance_content

.github/workflows/scripts/e2e.gradle.default.verify.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,7 @@ export SLSA_VERIFIER_TESTING="true"
6666
# Verify provenance content.
6767
verify_provenance_content
6868

69-
e2e_run_verifier_all_releases "HEAD"
69+
# Verify provenance authenticity with min version at release v2.4.1
70+
# Due to the breaking change below, we only need to verify starting at v2.4.1
71+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
72+
e2e_run_verifier_all_releases "v2.4.1"

.github/workflows/scripts/e2e.maven.default.verify.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,7 @@ export SLSA_VERIFIER_TESTING="true"
6363
# Verify provenance content.
6464
verify_provenance_content
6565

66-
e2e_run_verifier_all_releases "HEAD"
66+
# Verify provenance authenticity with min version at release v2.4.1
67+
# Due to the breaking change below, we only need to verify starting at v2.4.1
68+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
69+
e2e_run_verifier_all_releases "v2.4.1"

.github/workflows/scripts/e2e.nodejs.default.verify.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,7 @@ verify_provenance_content
113113

114114
verify_dist_tag
115115

116-
# Verify provenance authenticity with min version at HEAD
117-
e2e_run_verifier_all_releases "v2.3.0"
116+
# Verify provenance authenticity with min version at release v2.4.1
117+
# Due to the breaking change below, we only need to verify starting at v2.4.1
118+
# https://github.com/slsa-framework/slsa-github-generator/issues/3350
119+
e2e_run_verifier_all_releases "v2.4.1"

0 commit comments

Comments
 (0)