From 724c117ac9d10f98da85f3e91e6b4902db7c38e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 18:02:28 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/publish.yaml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e33615d..6aff4bcc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: features: hashbrown runs-on: ${{ matrix.target.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@nightly - name: Generate lockfile with minimal dependency versions run: cargo +nightly generate-lockfile -Zminimal-versions @@ -49,7 +49,7 @@ jobs: - visualizer,std runs-on: ${{ matrix.target.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Cargo test all targets run: cargo test --workspace --all-targets --no-default-features --features ${{ matrix.target.backend }},${{ matrix.features }} - name: Cargo test docs @@ -59,7 +59,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Cargo fmt run: cargo fmt --all -- --check @@ -81,7 +81,7 @@ jobs: - visualizer,std runs-on: ${{ matrix.target.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Cargo clippy run: cargo clippy --workspace --all-targets --no-default-features --features ${{ matrix.target.backend }},${{ matrix.features }} -- -D warnings @@ -95,14 +95,14 @@ jobs: env: RUSTDOCFLAGS: -Dwarnings steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build documentation run: cargo doc --no-deps --workspace --all-features --document-private-items readme: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use cached cargo-readme uses: actions/cache@v5 id: cargo-readme-cache diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 51e4a50a..a785a985 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -10,6 +10,6 @@ jobs: if: github.repository_owner == 'Traverse-Research' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Publish run: cargo publish --token ${{ secrets.cratesio_token }}