From 867de29a0241e99037238acc7463e0ee1a3de187 Mon Sep 17 00:00:00 2001 From: Puneet Matharu Date: Mon, 20 Nov 2023 15:02:12 +0000 Subject: [PATCH] Update .github/workflows/cmake-and-clang-format.yaml; move to most recent versions of everything. --- .github/workflows/cmake-and-clang-format.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake-and-clang-format.yaml b/.github/workflows/cmake-and-clang-format.yaml index adbdb4f813b5..940887661ff0 100644 --- a/.github/workflows/cmake-and-clang-format.yaml +++ b/.github/workflows/cmake-and-clang-format.yaml @@ -18,19 +18,19 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Format all files in the src/ directory except cfortran.h, lapack_qz.h, # superlu.c, superlu_dist.c, which sit in the src/generic/ subdirectory. - name: Format oomph-lib sources - uses: puneetmatharu/clang-format-lint-action@v0.13 + uses: puneetmatharu/clang-format-lint-action@v0.17 with: files: ^(src)\/(?!.*(cfortran|lapack_qz))(.+)\.(h|hpp|cc|cpp|tpp)$ - clangFormatVersion: 12 + clangFormatVersion: 16.0.3 style: file inplace: True - - uses: stefanzweifel/git-auto-commit-action@v4 + - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_user_name: clang-format-bot commit_message: "Automated commit of clang-format CI changes." @@ -42,7 +42,7 @@ jobs: args: --config-files .cmake-format.py --in-place - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_user_name: cmake-format-bot commit_message: "Automated commit of cmake-format CI changes."