From f928d5a4a916262c8e78fe7615e22879d3dd6751 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 23:01:55 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 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/v3...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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 3f4eefea..df871c25 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@v3 + uses: actions/cache@v5 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 @@ -53,7 +53,7 @@ jobs: - name: Set up Rust uses: dtolnay/rust-toolchain@stable - name: Cache cargo build - uses: actions/cache@v3 + uses: actions/cache@v5 env: cache-name: cargo-build-target-android with: @@ -116,7 +116,7 @@ jobs: # toolchain: nightly # override: true # - name: Cache cargo build - # uses: actions/cache@v3 + # uses: actions/cache@v5 # env: # cache-name: cargo-build-target-coverage # with: