From e83c938251a6e705fcc70065de2370b318d04ca3 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 4 Sep 2023 15:08:43 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/style.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/style.yaml b/.github/workflows/style.yaml index 2a1d33b..654b11b 100644 --- a/.github/workflows/style.yaml +++ b/.github/workflows/style.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: install cmake-format run: pip install cmakelang==0.6.13 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: clang-format run: git ls-files -z | grep -zE '\.(cc|h)$' | xargs -P 2 -n 50 -0 clang-format -i - name: cmake-format