🔥 🔥 BREAKING CHANGE 🔥 🔥
A new safe_output
input is now available to prevent outputting unsafe filename characters (Enabled by default). This would escape characters in the filename that could be used for command injection.
Note
This can be disabled by setting the safe_output
to false this comes with a recommendation to store all outputs generated in an environment variable first before using them.
Example
...
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v40
with:
safe_output: false # set to false because we are using an environment variable to store the output and avoid command injection.
- name: List all added files
env:
ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
run: |
for file in "$ADDED_FILES"; do
echo "$file was added"
done
...
What's Changed
- chore(deps): update typescript-eslint monorepo to v6.15.0 by @renovate in #1801
- Upgraded to v40.2.3 by @tj-actions-bot in #1800
- chore(deps): update dependency eslint-plugin-prettier to v5.1.0 by @renovate in #1802
- chore(deps): lock file maintenance by @renovate in #1803
- chore(deps): update dependency eslint-plugin-prettier to v5.1.1 by @renovate in #1804
- fix: update safe output regex and the docs by @tj-actions-bot in #1805
- Revert "chore(deps): update actions/download-artifact action to v4" by @jackton1 in #1806
- Update README.md by @jackton1 in #1808
- chore(deps): lock file maintenance by @renovate in #1809
- Updated README.md by @tj-actions-bot in #1810
Full Changelog: v40...v41.0.0