From 7ac591ba4f1c43ea7f2fc05b60ca802dba31bbeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 06:24:12 +0000 Subject: [PATCH] Bump the dependencies group across 1 directory with 3 updates Bumps the dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `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) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `codecov/codecov-action` from 6.0.1 to 7.0.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6.0.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/check_and_lint.yml | 6 +++--- .github/workflows/publish_crate.yml | 2 +- .github/workflows/test.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check_and_lint.yml b/.github/workflows/check_and_lint.yml index 6c5ebd3..0edacc7 100644 --- a/.github/workflows/check_and_lint.yml +++ b/.github/workflows/check_and_lint.yml @@ -15,7 +15,7 @@ jobs: name: Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -29,7 +29,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -45,7 +45,7 @@ jobs: name: Clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions-rs/toolchain@v1 with: toolchain: stable diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml index 8db5227..db9e173 100644 --- a/.github/workflows/publish_crate.yml +++ b/.github/workflows/publish_crate.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Pull changes run: git pull origin main --no-rebase diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ac334a..2f0acd1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: RUSTDOCFLAGS: -Cpanic=abort runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -28,7 +28,7 @@ jobs: override: true - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 env: cache-name: cache-dependencies with: @@ -57,7 +57,7 @@ jobs: files: results.xml - name: Upload to CodeCov - uses: codecov/codecov-action@v6.0.1 + uses: codecov/codecov-action@v7.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./lcov.info