From cfc77aadb68c1c18bf0c8f117f6b7a24a83cfd3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 05:54:33 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c09d63e..3a132e4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: clippy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install Rust stable with clippy uses: dtolnay/rust-toolchain@stable with: @@ -35,7 +35,7 @@ jobs: fmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install Rust nightly with rustfmt uses: dtolnay/rust-toolchain@nightly with: @@ -47,7 +47,7 @@ jobs: needs: [clippy, fmt] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Generate documentation run: cargo doc --no-deps --all-features --workspace --release @@ -59,7 +59,7 @@ jobs: os: [ubuntu-latest, macos-latest] # windows-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install Rust stable uses: dtolnay/rust-toolchain@stable