Skip to content

Commit 826d5e7

Browse files
committed
quote arg values that might be mis-read
1 parent 2bc34cb commit 826d5e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,9 @@ runs:
392392
$env.UV_CACHE_DIR = $env.RUNNER_TEMP | path join 'cpp-linter-action-cache'
393393
394394
let args = [
395-
--style "${{ inputs.style }}"
396-
--extensions ${{ inputs.extensions }}
397-
--tidy-checks "${{ inputs.tidy-checks }}"
395+
--style '"${{ inputs.style }}"'
396+
--extensions '"${{ inputs.extensions }}"'
397+
--tidy-checks '"${{ inputs.tidy-checks }}"'
398398
--repo-root ${{ inputs.repo-root }}
399399
--version ${{ inputs.version }}
400400
--verbosity ${{ inputs.verbosity }}
@@ -408,7 +408,7 @@ runs:
408408
--ignore-format ${{ inputs.ignore-format }}
409409
--database ${{ inputs.database }}
410410
--file-annotations ${{ inputs.file-annotations }}
411-
--extra-arg "${{ inputs.extra-args }}"
411+
--extra-arg '"${{ inputs.extra-args }}"'
412412
--tidy-review ${{ inputs.tidy-review }}
413413
--format-review ${{ inputs.format-review }}
414414
--passive-reviews ${{ inputs.passive-reviews }}

0 commit comments

Comments
 (0)