From 3a174a6e501991440c02fcbed44b50fac77b33cf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 13:22:01 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v5 --- .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..9e8bdcf 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@v5 - 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@v5 - name: Check formatting for '${{ matrix.exercise }}' run: cargo fmt -- --check working-directory: exercism/rust/${{ matrix.exercise }}