Skip to content

Commit a10249d

Browse files
committed
do not sync dev group in action
1 parent 51b9ceb commit a10249d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 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]
373373
if $verbosity {
374374
$uv_args = $uv_args | append '-v'
375375
}
@@ -392,7 +392,7 @@ runs:
392392
$env.UV_CACHE_DIR = $env.RUNNER_TEMP | path join 'cpp-linter-action-cache'
393393
394394
let args = [
395-
--style '${{ inputs.style }}'
395+
'--style=${{ inputs.style }}'
396396
--extensions '${{ inputs.extensions }}'
397397
'--tidy-checks=${{ inputs.tidy-checks }}'
398398
--repo-root ${{ inputs.repo-root }}
@@ -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)