From 6c58edadd7144ce204756fc342346ff28fded467 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 02:52:47 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 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/release.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84937c4..229b762 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: rust: stable steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ matrix.rust }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ffdb2de..e266c4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check formatting run: cargo fmt --check @@ -40,7 +40,7 @@ jobs: rust: stable steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check linting run: cargo clippy --all-targets --all-features -- -D warnings @@ -64,7 +64,7 @@ jobs: rust: stable steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build run: cargo build --verbose - name: Run tests