From ee2ae01910290d9ea8fe6a20ed394cc357352989 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 23:12:43 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/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) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6152c523..032b90a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: id: toolchain uses: dtolnay/rust-toolchain@stable - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 if: runner.os != 'macOS' # cache doesn't seem to behave nicely on macOS, see: https://github.com/ActivityWatch/aw-server-rust/issues/180 env: cache-name: cargo-build-target @@ -55,7 +55,7 @@ jobs: - name: Set up Rust uses: dtolnay/rust-toolchain@stable - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 env: cache-name: cargo-build-target-android with: @@ -113,7 +113,7 @@ jobs: # toolchain: nightly # override: true # - name: Cache cargo build - # uses: actions/cache@v5 + # uses: actions/cache@v6 # env: # cache-name: cargo-build-target-coverage # with: