Skip to content

Commit b0c2c2f

Browse files
committed
Fix linter-issues
1 parent ff1b2ac commit b0c2c2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/xmllinter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ jobs:
4343
echo "config<<EOF";
4444
cat "${{ inputs.config_file }}";
4545
echo "EOF";
46-
} >> $GITHUB_OUTPUT
46+
} >> "$GITHUB_OUTPUT"
4747
else
4848
echo "config={}" >> $GITHUB_OUTPUT
4949
fi
5050
5151
- name: Substract ignore-list from config
5252
id: read-ignore
5353
run: |
54-
IGNORE=$(echo '${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}' | jq -c '.')
54+
IGNORE="$(echo '${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}' | jq -c '.')"
5555
echo "ignore=${IGNORE}" >> $GITHUB_OUTPUT
5656
5757
- name: Find all XML-files in this repository
5858
id: find-xml
5959
run: |
60-
filelist=$(find . -type f -iname "*.xml" | jo -a)
60+
filelist="$(find . -type f -iname "*.xml" | jo -a)"
6161
echo "filelist=${filelist}" >> $GITHUB_OUTPUT
6262
6363
- name: Lint XML

0 commit comments

Comments
 (0)