From ee500ef909e0d151d7294f4de3f4d8b5912f122a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 08:44:22 +0000 Subject: [PATCH] chore(ci)(deps): bump the all group with 2 updates Bumps the all group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [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.0.3...v7.0.0) Updates `actions/cache` from 5 to 5.0.5 - [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...v5.0.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/ci.yml | 8 ++++---- .github/workflows/deploy-site.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6539c6..1a71737 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable @@ -39,7 +39,7 @@ jobs: - name: Cache cargo id: cargo-cache - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: | ~/.cargo/registry/index @@ -107,7 +107,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 - name: Download all artifacts uses: actions/download-artifact@v8 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ccff0fa..a31478c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable @@ -26,7 +26,7 @@ jobs: components: rustfmt, clippy - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: | ~/.cargo/registry/index @@ -65,13 +65,13 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: | ~/.cargo/registry/index diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index 56e01c8..c5887c9 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -17,7 +17,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4.1.0