From 41b9fe983e30f319038ef12afb55281d0000441e Mon Sep 17 00:00:00 2001 From: Alex Kremer Date: Mon, 9 Oct 2023 16:24:08 +0100 Subject: [PATCH] Use clang-format-16 bin --- .github/actions/clang_format/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/clang_format/action.yml b/.github/actions/clang_format/action.yml index 9484f16eb..8f1090492 100644 --- a/.github/actions/clang_format/action.yml +++ b/.github/actions/clang_format/action.yml @@ -17,7 +17,7 @@ runs: - name: Run formatter run: | - find src unittests -type f \( -name '*.cpp' -o -name '*.h' -o -name '*.ipp' \) -print0 | xargs -0 clang-format -i + find src unittests -type f \( -name '*.cpp' -o -name '*.h' -o -name '*.ipp' \) -print0 | xargs -0 clang-format-16 -i shell: bash - name: Check for differences