5 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
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ Without explicit inputs the action determines the two most recent non-RC tags fr
```yaml
steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
- uses: volker.raschek/ah-annotations@v0.0.1
@@ -26,7 +26,7 @@ Pass `old-tag` and `new-tag` to control the commit range:
```yaml
steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
- uses: volker.raschek/ah-annotations@v0.0.1
+5 -5
View File
@@ -14,7 +14,7 @@ YQ_VERSION="${YQ_VERSION:="${internal_yq_version}"}"
case "${YQ_OS:-}" in
linux*) ;;
darwin*) ;;
*) echo "Unsupported OS: $(uname -s)"; exit 1;;
*) echo "ERROR: Unsupported OS: $(uname -s)"; exit 1;;
esac
@@ -22,7 +22,7 @@ esac
case "${YQ_ARCH:-}" in
amd64* | x86_64*) YQ_ARCH="amd64" ;;
aarch64 | arm64*) YQ_ARCH="arm64" ;;
*) echo "Unsupported architecture: $(uname -m)"; exit 1;;
*) echo "ERROR: Unsupported architecture: $(uname -m)"; exit 1;;
esac
# Build download URL if not explicitly provided
@@ -41,7 +41,7 @@ fi
# Download and extract yq binary from .tar.gz
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)"
trap 'rm -rf "${tmp_dir}"' EXIT
@@ -61,7 +61,7 @@ if [[ "${YQ_DOWNLOAD_URL}" =~ \.tar\.gz$ ]]; then
# Download yq binary directly
else
echo "Downloading yq from ${YQ_DOWNLOAD_URL}..."
echo "INFO: Downloading yq from ${YQ_DOWNLOAD_URL}..."
curl \
--fail \
@@ -74,7 +74,7 @@ fi
chmod +x "${bin_path}"
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
if [[ -n "${GITHUB_PATH:-}" ]]; then