From d7cdce7e10cc546059b296009d9da37a487d7ea6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:37:10 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bd37fc7..f61464a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: name: Find exercises runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - id: find-exercises run: | echo \ @@ -32,7 +32,7 @@ jobs: matrix: exercise: ${{ fromJson(needs.find-exercises.outputs.exercises) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check formatting for '${{ matrix.exercise }}' run: cargo fmt -- --check working-directory: exercism/rust/${{ matrix.exercise }}