Skip to content

Commit e6da59e

Browse files
committed
fix: satisfy actionlint in reports workflow
1 parent 60a6b76 commit e6da59e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/reports.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: Fix permissions
9797
run: |
98-
chmod -c -R +rX "${REPORTS_TARGET}/" | while read line; do
98+
chmod -c -R +rX "${REPORTS_TARGET}/" | while IFS= read -r line; do
9999
echo "::warning title=Invalid file permissions automatically fixed::$line"
100100
done
101101

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Fixed
1616

17+
- Keep the reports workflow permission warning loop shell-safe for paths containing backslashes (#244)
1718
- Keep required PHPUnit matrix checks reporting after workflow-managed `.github/wiki` pointer commits by running the pull-request test workflow without top-level path filters and aligning the packaged consumer test wrapper (#230)
1819
- Ignore intentional Composer Dependency Analyser shadow dependency findings by default while adding `dependencies --show-shadow-dependencies` for audits (#233)
1920
- Dispatch the required test workflow after wiki preview automation updates a pull-request `.github/wiki` pointer, avoiding permanently pending required checks on bot-authored pointer commits (#230)

0 commit comments

Comments
 (0)