We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ea901 commit a0e1aa5Copy full SHA for a0e1aa5
.github/workflows/upgrade_codeql_dependencies.yml
@@ -48,8 +48,8 @@ jobs:
48
env:
49
RUNNER_TEMP: ${{ runner.temp }}
50
run: |
51
- find cpp -name '*.ql' -or -name '*.qll' | xargs --max-procs "$XARGS_MAX_PROCS" $RUNNER_TEMP/codeql/codeql query format --in-place
52
- find c -name '*.ql' -or -name '*.qll' | xargs --max-procs "$XARGS_MAX_PROCS" $RUNNER_TEMP/codeql/codeql query format --in-place
+ find cpp -name '*.ql' -or -name '*.qll' -print0 | xargs -0 --max-procs "$XARGS_MAX_PROCS" $RUNNER_TEMP/codeql/codeql query format --in-place
+ find c -name '*.ql' -or -name '*.qll' -print0 | xargs -0 --max-procs "$XARGS_MAX_PROCS" $RUNNER_TEMP/codeql/codeql query format --in-place
53
54
- name: Create Pull Request
55
uses: peter-evans/create-pull-request@v3
0 commit comments