Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/reusable-actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ jobs:
tar xzf actionlint.tar.gz -C "${install_dir}" actionlint
chmod +x "${install_dir}/actionlint"
echo "${install_dir}" >> "${GITHUB_PATH}"
actionlint --version
# Call by full path: $GITHUB_PATH only affects *subsequent* steps, so
# `actionlint` is not yet on PATH within this step (a bare call exits
# 127). The next step ("Run actionlint") resolves it via $GITHUB_PATH.
"${install_dir}/actionlint" --version
- name: Run actionlint
env:
FILES: ${{ inputs.files }}
Expand Down