Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow cosign opts to be empty in aqua #4396

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: allow cosign opts to be empty in aqua
The opts attribute on cosign check for aqua is optional.
If not provided it will make the package resolution fail.
This patch makes it optional and provide an empty array if key is not
found.
  • Loading branch information
IxDay committed Feb 14, 2025
commit 1797a318853be5e6cb411aede9a372bd3f62d699
1 change: 1 addition & 0 deletions src/aqua/aqua_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ pub struct AquaCosign {
pub signature: Option<AquaCosignSignature>,
pub key: Option<AquaCosignSignature>,
pub certificate: Option<AquaCosignSignature>,
#[serde(skip_serializing_if = "Vec::is_empty", default)]
opts: Vec<String>,
}

Expand Down
Loading