Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into ww/audit-raw
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw committed Jan 26, 2025
2 parents 21de831 + d6aeaaa commit d6a342a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ clap-verbosity-flag = { version = "3.0.2", features = [
], default-features = false }
etcetera = "0.8.0"
flate2 = "1.0.35"
github-actions-models = "0.22.0"
github-actions-models = "0.23.0"
http-cache-reqwest = "0.15.0"
human-panic = "2.0.1"
indexmap = "2.7.1"
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Nothing to see here (yet!)

* Fixed a bug where `zizmor` would fail to discover actions within
subdirectories of `.github/workflows` (#477)
* Fixed a bug where `zizmor` would fail to parse composite action definitions
with no `name` field (#487)

## v1.2.2

Expand Down
1 change: 1 addition & 0 deletions docs/snippets/trophies.md
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,7 @@
- sigstore/cosign#3959
- sigstore/fulcio#1910
- sigstore/gitsign#602
- sigstore/sigstore-rs#424


- ![](https://github.com/simpeg.png?size=40){ width="40" loading=lazy align=left } simpeg
Expand Down
1 change: 1 addition & 0 deletions docs/snippets/trophies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ Saghen/blink.cmp#991
sigstore/cosign#3959
sigstore/fulcio#1910
sigstore/gitsign#602
sigstore/sigstore-rs#424
simpeg/simpeg#1592
termcolor/termcolor#89
termux/termux-packages#22519
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ fn run() -> Result<ExitCode> {
use crate::audit::AuditCore as _;
match base::new(audit_state.clone()) {
Ok(audit) => audit_registry.register_audit(base::ident(), Box::new(audit)),
Err(e) => tracing::warn!("skipping {audit}: {e}", audit = base::ident()),
Err(e) => tracing::info!("skipping {audit}: {e}", audit = base::ident()),
}
}};
}
Expand Down

0 comments on commit d6a342a

Please sign in to comment.