chore: prep for release 1.6.0 (#681)

This commit is contained in:
William Woodruff 2025-04-19 22:13:28 -04:00 committed by GitHub
parent 9689f0e5fe
commit fb8520bdd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 13 additions and 3 deletions

2
Cargo.lock generated
View file

@ -3229,7 +3229,7 @@ dependencies = [
[[package]] [[package]]
name = "zizmor" name = "zizmor"
version = "1.5.2" version = "1.6.0"
dependencies = [ dependencies = [
"annotate-snippets", "annotate-snippets",
"anstream", "anstream",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "zizmor" name = "zizmor"
description = "Static analysis for GitHub Actions" description = "Static analysis for GitHub Actions"
version = "1.5.2" version = "1.6.0"
edition = "2024" edition = "2024"
repository = "https://github.com/woodruffw/zizmor" repository = "https://github.com/woodruffw/zizmor"
homepage = "https://github.com/woodruffw/zizmor" homepage = "https://github.com/woodruffw/zizmor"

View file

@ -9,8 +9,17 @@ of `zizmor`.
## Next (UNRELEASED) ## Next (UNRELEASED)
## v1.6.0
### New Features 🌈 ### New Features 🌈
* **New audit**: The [forbidden-uses] audit is a configurable audit
that allows allow- or denylisting of entire orgs, repos, or specific
action patterns. This audit must be configured; by default it has
no effect (#664)
Many thanks to @Holzhaus for proposing and initiating this new audit!
* `zizmor` now supports `--format=github` as an output format. * `zizmor` now supports `--format=github` as an output format.
This format produces check annotations via GitHub workflow commands, This format produces check annotations via GitHub workflow commands,
e.g. `::warning` and `::error`. See the e.g. `::warning` and `::error`. See the
@ -691,3 +700,4 @@ This is one of `zizmor`'s bigger recent releases! Key enhancements include:
[bot-conditions]: ./audits.md#bot-conditions [bot-conditions]: ./audits.md#bot-conditions
[overprovisioned-secrets]: ./audits.md#overprovisioned-secrets [overprovisioned-secrets]: ./audits.md#overprovisioned-secrets
[unredacted-secrets]: ./audits.md#unredacted-secrets [unredacted-secrets]: ./audits.md#unredacted-secrets
[forbidden-uses]: ./audits.md#forbidden-uses

View file

@ -698,7 +698,7 @@ To do so, add the following to your `.pre-commit-config.yaml` `repos` section:
```yaml ```yaml
- repo: https://github.com/woodruffw/zizmor-pre-commit - repo: https://github.com/woodruffw/zizmor-pre-commit
rev: v1.5.2 # (1)! rev: v1.6.0 # (1)!
hooks: hooks:
- id: zizmor - id: zizmor
``` ```