We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c248e commit 868469cCopy full SHA for 868469c
tools/harbor-sbom-browser/src/utils.rs
@@ -28,6 +28,8 @@ pub enum DownloadSbomError {
28
cosign_stdout: String,
29
cosign_stderr: String,
30
cosign_status: std::process::ExitStatus,
31
+ repository: String,
32
+ digest: String,
33
},
34
#[snafu(display("cannot parse DSSE"))]
35
ParseDsse { source: serde_json::Error },
@@ -80,6 +82,8 @@ pub async fn verify_attestation(
80
82
cosign_stdout: String::from_utf8_lossy(&cmd_output.stdout).to_string(),
81
83
cosign_stderr: stderr_output.to_string(),
84
cosign_status: cmd_output.status,
85
+ repository: repository.to_string(),
86
+ digest: digest.to_string(),
87
});
88
}
89
0 commit comments