From 8aaab0ccb28cd97c0888bffd8bd1edbd722d1f54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 23:46:13 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache 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 dc575841..857bac2e 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@v4 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@v4 env: cache-name: cargo-build-target-android with: @@ -111,7 +111,7 @@ jobs: # toolchain: nightly # override: true # - name: Cache cargo build - # uses: actions/cache@v3 + # uses: actions/cache@v4 # env: # cache-name: cargo-build-target-coverage # with: