File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed
Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 5151 - uses : actions/checkout@v4
5252 - uses : docker://pipelinecomponents/shellcheck
5353 with :
54- args : >-
55- find .
56- -not -path '*/.git/*'
57- -name '*.sh'
58- -type f
59- -print0
60- | xargs -0 -r -n1 shellcheck
54+ # yamllint disable-line rule:line-length
55+ args : /bin/sh -c "find . -not -path '*/.git/*' -name '*.sh' -type f -print0 | xargs -0 -r -n1 shellcheck"
Original file line number Diff line number Diff line change 3838 - uses : actions/checkout@v4
3939 - uses : docker://pipelinecomponents/xmllint
4040 with :
41- args : >-
42- find .
43- -iname '*.xml'
44- -type f
45- -exec xmllint --noout {} \+
41+ # yamllint disable-line rule:line-length
42+ args : /bin/sh -c "find . -iname '*.xml' -type f -exec xmllint --noout {} \+"
You can’t perform that action at this time.
0 commit comments