From 34d12763452c48f7120875b20d0d18ae14dfcdb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= Date: Mon, 16 Dec 2024 11:20:39 +0100 Subject: [PATCH] Update clang_format.yml --- .github/workflows/clang_format.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clang_format.yml b/.github/workflows/clang_format.yml index f45f604..92e1b94 100644 --- a/.github/workflows/clang_format.yml +++ b/.github/workflows/clang_format.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: install clang - run: sudo apt install -y clang-format-12 + run: sudo apt install -y clang-format-13 - name: config git & temporary branch run: | @@ -25,7 +25,7 @@ jobs: git config --global user.name "continuous integration" git checkout -b ci_processing - name: apply clang format - run: find . -iname *.h -o -iname *.cpp -o -iname *.hpp | xargs clang-format-12 --style=file -i + run: find . -iname *.h -o -iname *.cpp -o -iname *.hpp | xargs clang-format-13 --style=file -i - name: push changes if any run: | if git commit -a -m "[skip ci] clang format" ; then