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
+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 # Ensure yq is in PATH for subsequent steps
if [[ -n "${GITHUB_PATH:-}" ]]; then if [[ -n "${GITHUB_PATH:-}" ]]; then
"$(dirname "${bin_path}")" >> "${GITHUB_PATH}" dirname "${bin_path}" >> "${GITHUB_PATH}"
fi fi