Skip to content

Commit

Permalink
Merge pull request #182 from sigstore/dependabot/cargo/serial_test-0.…
Browse files Browse the repository at this point in the history
…10.0

chore(deps): Update serial_test requirement from 0.9.0 to 0.10.0
  • Loading branch information
flavio authored Dec 20, 2022
2 parents 882392b + f5096ae commit 05b5aea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ rstest = "0.16.0"
tempfile = "3.3.0"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
testcontainers = "0.14"
serial_test = "0.9.0"
serial_test = "0.10.0"

# cosign example mappings

Expand Down
2 changes: 1 addition & 1 deletion src/cosign/constraint/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl Constraint for PrivateKeySigner {
}
signature_layer.raw_data = serde_json::to_vec(&signature_layer.simple_signing)?;
let sig = self.key.sign(&signature_layer.raw_data)?;
let sig_base64 = base64::encode(&sig);
let sig_base64 = base64::encode(sig);
signature_layer.signature = Some(sig_base64);
Ok(true)
}
Expand Down

0 comments on commit 05b5aea

Please sign in to comment.