From 974f4edbb5dc68667a75a0f90722bf86e668c91c Mon Sep 17 00:00:00 2001 From: Felix Exner Date: Tue, 13 May 2025 11:34:39 +0000 Subject: [PATCH] Update ci_format workflow components --- .github/workflows/ci-format.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-format.yml b/.github/workflows/ci-format.yml index f3527cc17..715112086 100644 --- a/.github/workflows/ci-format.yml +++ b/.github/workflows/ci-format.yml @@ -15,12 +15,12 @@ jobs: name: Format runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: 3.10.4 - - name: Install system hooks - run: sudo apt-get install clang-format-14 cppcheck - - uses: pre-commit/action@v2.0.3 - with: - extra_args: --all-files --hook-stage manual + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 3.10.4 + - name: Install system hooks + run: sudo apt-get install clang-format-14 cppcheck + - uses: pre-commit/action@v3.0.1 + with: + extra_args: --all-files --hook-stage manual