Skip to content

Commit ba5a909

Browse files
committed
bump
1 parent 30b0af3 commit ba5a909

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/xmllinter.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,9 @@ jobs:
5656
id: linter
5757
run: |
5858
echo '${{ steps.find-xml.outputs.filelist }}' | jq -c '.[]' | while read i; do
59-
echo "current_file=${i}" >> $GITHUB_OUTPUT
59+
echo "current_file=${i}" >> $GITHUB_ENV
6060
61-
if [ ${{ contains(
62-
fromJSON(steps.read-json.outputs.config).ignore,
63-
steps.linter.outputs.current_file) }} -eq "true"
64-
]; then
61+
if [ ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, env.current_file) }} -eq "true" ]; then
6562
echo "Skipping ${i}"
6663
else
6764
echo "Linting ${i}"

0 commit comments

Comments
 (0)