-
Notifications
You must be signed in to change notification settings - Fork 493
[BUG] hadolint XML checkstyle is wrongly encoded #1065
Copy link
Copy link
Closed
Labels
Description
The XML created has wrong entity encoding that causes the UI parsers to show also wrongly encoded information.
Command:
hadolint -f checkstyle Dockerfile-test
Output (head):
<?xml version='1.0' encoding='UTF-8'?><checkstyle version='4.3'><file name='Dockerfile-test'>
Expected:
<?xml version="1.0" encoding="UTF-8"?><checkstyle version="4.3"><file name="Dockerfile-test">
Resulting wrong UI view after parsing via:
- uses: lcollins/checkstyle-github-action@v3.1.0
with:
path: 'checkstyle-hadolint.xml
PS. You can now enable issue types to differentiate between Bugs/Features.
Reactions are currently unavailable