2 Commits
Author SHA1 Message Date
CSRBot f2c542c849 chore(deps): update dependency volker.raschek/ah-annotations to v0.1.1
Markdown linter / markdown-lint (pull_request) Successful in 21s
Install yq / install-yq (ubuntu-latest-amd64, amd64, linux) (push) Successful in 7s
Markdown linter / markdown-link-checker (push) Successful in 24s
Install yq / install-yq (ubuntu-latest-arm64, arm64, linux) (push) Successful in 12s
Markdown linter / markdown-lint (push) Successful in 16s
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 7s
Markdown linter / markdown-link-checker (pull_request) Successful in 40s
2026-08-16 20:23:18 +00:00
volker.raschekandCopilot 1f3c3084cb fix: use dirname directly instead of executing its output
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 10s
Markdown linter / markdown-link-checker (push) Successful in 24s
Markdown linter / markdown-lint (push) Successful in 33s
The command substitution caused the directory path to be executed as a
command rather than written to GITHUB_PATH, resulting in
"Is a directory" errors at runtime.

Co-authored-by: Copilot <copilot@github.com>
2026-08-16 22:20:51 +02:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ steps:
- uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
- uses: volker.raschek/ah-annotations@v0.0.1
- uses: volker.raschek/ah-annotations@v0.1.1
```
### Explicit tags
@@ -29,7 +29,7 @@ steps:
- uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
- uses: volker.raschek/ah-annotations@v0.0.1
- uses: volker.raschek/ah-annotations@v0.1.1
with:
old-tag: v1.0.0
new-tag: v2.0.0
+1 -1
View File
@@ -78,5 +78,5 @@ echo "INFO: Installed ${yq_installed_version} in ${bin_path}"
# Ensure yq is in PATH for subsequent steps
if [[ -n "${GITHUB_PATH:-}" ]]; then
"$(dirname "${bin_path}")" >> "${GITHUB_PATH}"
dirname "${bin_path}" >> "${GITHUB_PATH}"
fi