Skip to content

Commit 569f3f7

Browse files
authored
chore(deps): update SLSA verifier to version 2.6.0 (#879)
Signed-off-by: behnazh-w <[email protected]>
1 parent e11be2d commit 569f3f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ setup-go:
9696
go build -o $(PACKAGE_PATH)/bin/cuevalidate.so -buildmode=c-shared $(REPO_PATH)/golang/internal/cue_validator/cue_validator.go
9797
setup-binaries: $(PACKAGE_PATH)/bin/slsa-verifier $(PACKAGE_PATH)/resources/mvnw $(PACKAGE_PATH)/resources/gradlew souffle gnu-sed
9898
$(PACKAGE_PATH)/bin/slsa-verifier:
99-
git clone --depth 1 https://github.com/slsa-framework/slsa-verifier.git -b v2.5.1
99+
git clone --depth 1 https://github.com/slsa-framework/slsa-verifier.git -b v2.6.0
100100
cd slsa-verifier/cli/slsa-verifier && go build -o $(PACKAGE_PATH)/bin/
101101
cd $(REPO_PATH) && rm -rf slsa-verifier
102102
$(PACKAGE_PATH)/resources/mvnw:

src/macaron/slsa_analyzer/checks/provenance_l3_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _verify_slsa(
147147
)
148148

149149
output = verifier_output.stdout.decode("utf-8")
150-
if "PASSED: Verified SLSA provenance" in output:
150+
if "PASSED: SLSA verification passed" in output:
151151
result = _VerifyArtifactResult(_VerifyArtifactResultType.PASSED, asset_name)
152152
else:
153153
result = _VerifyArtifactResult(_VerifyArtifactResultType.FAILED, asset_name)

0 commit comments

Comments
 (0)