We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc9f96 commit ce7f573Copy full SHA for ce7f573
2 files changed
.github/workflows/shell.yml
@@ -51,10 +51,5 @@ jobs:
51
- uses: actions/checkout@v4
52
- uses: docker://pipelinecomponents/shellcheck
53
with:
54
- args: >-
55
- find .
56
- -not -path '*/.git/*'
57
- -name '*.sh'
58
- -type f
59
- -print0
60
- | xargs -0 -r -n1 shellcheck
+ # yamllint disable-line rule:line-length
+ args: /bin/sh -c "find . -not -path '*/.git/*' -name '*.sh' -type f -print0 | xargs -0 -r -n1 shellcheck"
.github/workflows/xml.yml
@@ -38,8 +38,5 @@ jobs:
38
39
- uses: docker://pipelinecomponents/xmllint
40
41
42
43
- -iname '*.xml'
44
45
- -exec xmllint --noout {} \+
+ args: /bin/sh -c "find . -iname '*.xml' -type f -exec xmllint --noout {} \+"
0 commit comments