7 Commits
Author SHA1 Message Date
volker.raschek 68d8884ddd style: use same logger pattern
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 6s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 11s
Markdown linter / markdown-link-checker (push) Successful in 23s
Markdown linter / markdown-lint (push) Successful in 34s
2026-08-16 22:05:26 +02:00
CSRBot 9b964d0089 Merge pull request 'chore(deps): update dependency actions/checkout to v7' (#5) from renovate/actions-checkout-7.x into master
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 10s
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 6s
Markdown linter / markdown-link-checker (push) Successful in 33s
Markdown linter / markdown-lint (push) Successful in 37s
2026-08-16 19:50:34 +00:00
CSRBot 57d5864e69 chore(deps): update dependency actions/checkout to v7
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 6s
Markdown linter / markdown-link-checker (push) Successful in 21s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 11s
Markdown linter / markdown-lint (push) Successful in 13s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (pull_request) Successful in 11s
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (pull_request) Successful in 5s
Markdown linter / markdown-lint (pull_request) Successful in 20s
Markdown linter / markdown-link-checker (pull_request) Successful in 39s
2026-08-16 19:45:02 +00:00
CSRBot 7eb7e2a458 Merge pull request 'chore(deps): update dependency actions/checkout to v5.1.0' (#4) from renovate/actions-checkout-5.x into master
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 6s
Markdown linter / markdown-link-checker (push) Successful in 22s
Markdown linter / markdown-lint (push) Successful in 12s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 10s
2026-08-16 19:38:02 +00:00
CSRBot 62f719e55e chore(deps): update dependency actions/checkout to v5.1.0
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (pull_request) Successful in 6s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (pull_request) Successful in 9s
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 7s
Markdown linter / markdown-link-checker (push) Successful in 22s
Markdown linter / markdown-lint (push) Successful in 29s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 10s
Markdown linter / markdown-link-checker (pull_request) Successful in 23s
Markdown linter / markdown-lint (pull_request) Successful in 32s
2026-08-16 19:37:56 +00:00
volker.raschekandCopilot 09c7f8b592 chore(renovate): consolidate automerge rules and update README versions
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 8s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 10s
Markdown linter / markdown-link-checker (push) Successful in 21s
Markdown linter / markdown-lint (push) Successful in 31s
Merge the separate actions/checkout packageRule into the existing
ah-annotations rule to reduce duplication. Update README examples to use
current versions (actions/checkout@v5.0.0, ah-annotations@v0.0.1).

Co-authored-by: Copilot <copilot@github.com>
2026-08-16 21:36:29 +02:00
volker.raschekandCopilot 3c595aa81d fix(renovate): escape slash in matchStrings and add automerge rule for actions/checkout
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 7s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 11s
Markdown linter / markdown-link-checker (push) Successful in 21s
Markdown linter / markdown-lint (push) Successful in 33s
Escape the forward slash in the ah-annotations regex pattern to ensure
correct matching. Add a packageRule to automerge minor, patch, and
pinDigest updates for actions/checkout.

Co-authored-by: Copilot <copilot@github.com>
2026-08-16 21:31:01 +02:00
3 changed files with 11 additions and 10 deletions
+4 -4
View File
@@ -14,10 +14,10 @@ Without explicit inputs the action determines the two most recent non-RC tags fr
```yaml ```yaml
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v7.0.1
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: volker.raschek/ah-annotations@v1 - uses: volker.raschek/ah-annotations@v0.0.1
``` ```
### Explicit tags ### Explicit tags
@@ -26,10 +26,10 @@ Pass `old-tag` and `new-tag` to control the commit range:
```yaml ```yaml
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v7.0.1
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: volker.raschek/ah-annotations@v1.0.0 - uses: volker.raschek/ah-annotations@v0.0.1
with: with:
old-tag: v1.0.0 old-tag: v1.0.0
new-tag: v2.0.0 new-tag: v2.0.0
+5 -5
View File
@@ -14,7 +14,7 @@ YQ_VERSION="${YQ_VERSION:="${internal_yq_version}"}"
case "${YQ_OS:-}" in case "${YQ_OS:-}" in
linux*) ;; linux*) ;;
darwin*) ;; darwin*) ;;
*) echo "Unsupported OS: $(uname -s)"; exit 1;; *) echo "ERROR: Unsupported OS: $(uname -s)"; exit 1;;
esac esac
@@ -22,7 +22,7 @@ esac
case "${YQ_ARCH:-}" in case "${YQ_ARCH:-}" in
amd64* | x86_64*) YQ_ARCH="amd64" ;; amd64* | x86_64*) YQ_ARCH="amd64" ;;
aarch64 | arm64*) YQ_ARCH="arm64" ;; aarch64 | arm64*) YQ_ARCH="arm64" ;;
*) echo "Unsupported architecture: $(uname -m)"; exit 1;; *) echo "ERROR: Unsupported architecture: $(uname -m)"; exit 1;;
esac esac
# Build download URL if not explicitly provided # Build download URL if not explicitly provided
@@ -41,7 +41,7 @@ fi
# Download and extract yq binary from .tar.gz # Download and extract yq binary from .tar.gz
if [[ "${YQ_DOWNLOAD_URL}" =~ \.tar\.gz$ ]]; then if [[ "${YQ_DOWNLOAD_URL}" =~ \.tar\.gz$ ]]; then
echo "Downloading and extracting yq from ${YQ_DOWNLOAD_URL}..." echo "INFO: Downloading and extracting yq from ${YQ_DOWNLOAD_URL}..."
tmp_dir="$(mktemp -d)" tmp_dir="$(mktemp -d)"
trap 'rm -rf "${tmp_dir}"' EXIT trap 'rm -rf "${tmp_dir}"' EXIT
@@ -61,7 +61,7 @@ if [[ "${YQ_DOWNLOAD_URL}" =~ \.tar\.gz$ ]]; then
# Download yq binary directly # Download yq binary directly
else else
echo "Downloading yq from ${YQ_DOWNLOAD_URL}..." echo "INFO: Downloading yq from ${YQ_DOWNLOAD_URL}..."
curl \ curl \
--fail \ --fail \
@@ -74,7 +74,7 @@ fi
chmod +x "${bin_path}" chmod +x "${bin_path}"
yq_installed_version="$("${bin_path}" --version)" yq_installed_version="$("${bin_path}" --version)"
echo "Installed ${yq_installed_version} in ${bin_path}" echo "INFO: Installed ${yq_installed_version} in ${bin_path}"
# Ensure yq is in PATH for subsequent steps # Ensure yq is in PATH for subsequent steps
if [[ -n "${GITHUB_PATH:-}" ]]; then if [[ -n "${GITHUB_PATH:-}" ]]; then
+2 -1
View File
@@ -13,7 +13,7 @@
"^README\\.md$" "^README\\.md$"
], ],
"matchStrings": [ "matchStrings": [
"uses: volker\\.raschek/ah-annotations@(?<currentValue>[^\\s\"']+)" "uses: volker\\.raschek\/ah-annotations@(?<currentValue>[^\\s\"']+)"
], ],
"depNameTemplate": "volker.raschek/ah-annotations", "depNameTemplate": "volker.raschek/ah-annotations",
"packageNameTemplate": "https://git.cryptic.systems/volker.raschek/ah-annotations", "packageNameTemplate": "https://git.cryptic.systems/volker.raschek/ah-annotations",
@@ -41,6 +41,7 @@
], ],
"automerge": true, "automerge": true,
"matchDepNames": [ "matchDepNames": [
"actions/checkout",
"volker.raschek/ah-annotations" "volker.raschek/ah-annotations"
], ],
"matchUpdateTypes": [ "matchUpdateTypes": [