From 4c204748d031b2243c57882268b0c10e8fc7e6e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 12:58:32 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 in /.github/workflows Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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.yml | 4 ++-- .github/workflows/publish.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad52328..6909842 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: name: Lint Rust code runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Cargo fmt run: cargo fmt --all -- --check - name: Cargo clippy @@ -19,7 +19,7 @@ jobs: name: Build-test MSRV (1.74) with minimal crate dependencies runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@nightly - name: Generate minimal-version dependencies run: cargo -Zminimal-versions generate-lockfile diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 51020bb..51e4a50 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@v4 + - uses: actions/checkout@v6 - name: Publish run: cargo publish --token ${{ secrets.cratesio_token }}