From 89eb7bfc140e5532ae6c82acfbc64efca602a3be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nerijus=20Bend=C5=BEi=C5=ABnas?=
Date: Fri, 10 Jul 2026 15:59:09 +0300
Subject: [PATCH] docs: prepare version pins for upcoming v0.23.0
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Self-referential snippets must point at the tag that ships them; the tag
lands on this merge.
Signed-off-by: Nerijus Bendžiūnas
---
README.md | 14 +++++++-------
docs/index.html | 8 ++++----
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/README.md b/README.md
index f05e6e5..4f333d5 100644
--- a/README.md
+++ b/README.md
@@ -295,7 +295,7 @@ COMMIT_GUARD_GIT_TIMEOUT=30 commit-guard --range origin/main..HEAD
In GitHub Actions, set it at the step or job level:
```yaml
-- uses: benner/commit-guard@v0.22.3
+- uses: benner/commit-guard@v0.23.0
env:
COMMIT_GUARD_GIT_TIMEOUT: 30
with:
@@ -395,7 +395,7 @@ steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
```
Check all commits in a pull request:
@@ -411,7 +411,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
with:
range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }}
```
@@ -419,7 +419,7 @@ jobs:
Check a specific commit SHA (mirrors the positional CLI argument):
```yaml
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
with:
rev: ${{ github.sha }}
```
@@ -437,7 +437,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
with:
range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }}
disable: signed-off,signature
@@ -457,7 +457,7 @@ jobs:
When `output-file` is set the action exposes the path as an output:
```yaml
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
id: cg
with:
range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }}
@@ -473,7 +473,7 @@ Add to your `.pre-commit-config.yaml`:
---
repos:
- repo: https://github.com/benner/commit-guard
- rev: v0.22.3
+ rev: v0.23.0
hooks:
- id: commit-guard
- id: commit-guard-signature
diff --git a/docs/index.html b/docs/index.html
index 4153732..54b9652 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -575,13 +575,13 @@ GitHub Actions #
- uses: actions/checkout@v4
with:
fetch-depth: 0
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
with:
range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }}
disable: signed-off,signature
Check a specific commit SHA:
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
with:
rev: ${{ github.sha }}
@@ -600,7 +600,7 @@ GitHub Actions #
When output-file is set the action exposes the path as
a step output, making JSONL results available to subsequent steps:
- - uses: benner/commit-guard@v0.22.3
+ - uses: benner/commit-guard@v0.23.0
id: cg
with:
range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }}
@@ -613,7 +613,7 @@ pre-commit #
Add to .pre-commit-config.yaml:
repos:
- repo: https://github.com/benner/commit-guard
- rev: v0.22.3
+ rev: v0.23.0
hooks:
- id: commit-guard
- id: commit-guard-signature