From e6b37c625c464fed71df9bf0a9e074d619eef865 Mon Sep 17 00:00:00 2001 From: Kotaro Yoshimoto Date: Wed, 26 Jun 2024 07:39:22 +0000 Subject: [PATCH] chore: fix pre-commit errors Signed-off-by: Kotaro Yoshimoto --- .github/workflows/cppcheck-differential.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cppcheck-differential.yaml b/.github/workflows/cppcheck-differential.yaml index af5f844ad535e..7fe37ea006596 100644 --- a/.github/workflows/cppcheck-differential.yaml +++ b/.github/workflows/cppcheck-differential.yaml @@ -42,8 +42,8 @@ jobs: continue-on-error: true id: cppcheck run: | - echo "Running Cppcheck on changed files: ${{ steps.get-changed-files.outputs.changed-files }}" - cppcheck --enable=all --inconclusive --check-level=exhaustive --error-exitcode=1 --suppressions-list=.cppcheck_suppressions ${{ steps.get-changed-files.outputs.changed-files }} 2> cppcheck-report.txt + echo "Running Cppcheck on changed files: ${{ steps.get-changed-files.outputs.changed-files }}" + cppcheck --enable=all --inconclusive --check-level=exhaustive --error-exitcode=1 --suppressions-list=.cppcheck_suppressions ${{ steps.get-changed-files.outputs.changed-files }} 2> cppcheck-report.txt shell: bash - name: Show cppcheck-report result