From 88fd69237c973e351eeaa2b9f99b68e1f761abdb Mon Sep 17 00:00:00 2001 From: nikolas Date: Sun, 7 Jun 2026 20:26:30 -0400 Subject: [PATCH] build.yml: Update actions/checkout to v4 v6 requires some node-24 compatibility which breaks things. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index caa54a33..66baf19d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: name: CodeStyleCheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Code Style run: | ./scripts/check @@ -76,7 +76,7 @@ jobs: container: ${{ matrix.container }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Install Arch Linux dependencies if: matrix.name == 'Arch'