From 3b346af4bd0f2cb068637c2579285ca1873ce110 Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Mon, 22 Apr 2024 21:28:37 +0200 Subject: [PATCH] Update format.yaml Switch to node20 --- .github/workflows/format.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 2fc1be97..f2e3d192 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -15,11 +15,11 @@ jobs: name: pre-commit runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 - name: Install clang-format run: sudo apt-get install clang-format - - uses: pre-commit/action@v2.0.3 + - uses: pre-commit/action@v3.0.1 id: precommit - name: Upload pre-commit changes if: failure() && steps.precommit.outcome == 'failure'