Skip to content

Commit b533471

Browse files
authored
fix: pass inputs as uninterpretted strings (#324)
* use quotes accurately in nuhell script * do not sync the dev group dependencies * reduce expected warnings in uv debug logs
1 parent 18f7429 commit b533471

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

action.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ runs:
369369
)
370370
371371
print $"\n(ansi purple)Installing workflow dependencies(ansi reset)"
372-
mut uv_args = [sync --project $action_path --group action]
372+
mut uv_args = [sync --project $action_path --group action --no-dev --link-mode=copy]
373373
if $verbosity {
374374
$uv_args = $uv_args | append '-v'
375375
}
@@ -392,27 +392,27 @@ 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 }}"
398-
--repo-root=${{ inputs.repo-root }}
399-
--version=${{ inputs.version }}
400-
--verbosity=${{ inputs.verbosity }}
401-
--lines-changed-only=${{ inputs.lines-changed-only }}
402-
--files-changed-only=${{ inputs.files-changed-only }}
403-
--thread-comments=${{ inputs.thread-comments }}
404-
--no-lgtm=${{ inputs.no-lgtm }}
405-
--step-summary=${{ inputs.step-summary }}
406-
--ignore="${{ inputs.ignore }}"
407-
--ignore-tidy="${{ inputs.ignore-tidy }}"
408-
--ignore-format="${{ inputs.ignore-format }}"
409-
--database=${{ inputs.database }}
410-
--file-annotations=${{ inputs.file-annotations }}
411-
--extra-arg="${{ inputs.extra-args }}"
412-
--tidy-review="${{ inputs.tidy-review }}"
413-
--format-review="${{ inputs.format-review }}"
414-
--passive-reviews="${{ inputs.passive-reviews }}"
415-
--jobs=${{ inputs.jobs }}
395+
'--style=${{ inputs.style }}'
396+
'--extensions=${{ inputs.extensions }}'
397+
'--tidy-checks=${{ inputs.tidy-checks }}'
398+
'--repo-root=${{ inputs.repo-root }}'
399+
'--version=${{ inputs.version }}'
400+
'--verbosity=${{ inputs.verbosity }}'
401+
'--lines-changed-only=${{ inputs.lines-changed-only }}'
402+
'--files-changed-only=${{ inputs.files-changed-only }}'
403+
'--thread-comments=${{ inputs.thread-comments }}'
404+
'--no-lgtm=${{ inputs.no-lgtm }}'
405+
'--step-summary=${{ inputs.step-summary }}'
406+
'--ignore=${{ inputs.ignore }}'
407+
'--ignore-tidy=${{ inputs.ignore-tidy }}'
408+
'--ignore-format=${{ inputs.ignore-format }}'
409+
'--database=${{ inputs.database }}'
410+
'--file-annotations=${{ inputs.file-annotations }}'
411+
'--extra-arg=${{ inputs.extra-args }}'
412+
'--tidy-review=${{ inputs.tidy-review }}'
413+
'--format-review=${{ inputs.format-review }}'
414+
'--passive-reviews=${{ inputs.passive-reviews }}'
415+
'--jobs=${{ inputs.jobs }}'
416416
]
417417
mut uv_args = [run --no-sync --project $action_path --directory (pwd)]
418418

0 commit comments

Comments
 (0)