From 52384715b585830ff5b8d1ce281f286aa4f2f5b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 04:46:06 +0000 Subject: [PATCH] chore(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/deploy.yml | 4 ++-- .github/workflows/on_pr.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 82dea57..b0ab756 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -185,7 +185,7 @@ jobs: - run: ls -la ./bin/* - name: Cache Binaries - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./bin/ key: ${{ github.run_id }} @@ -209,7 +209,7 @@ jobs: - name: Cache cargo build output id: get_cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./bin/ key: ${{ github.run_id }} diff --git a/.github/workflows/on_pr.yaml b/.github/workflows/on_pr.yaml index c630524..04297ce 100644 --- a/.github/workflows/on_pr.yaml +++ b/.github/workflows/on_pr.yaml @@ -253,7 +253,7 @@ jobs: - run: ls -la ./bin/* - name: Cache Binaries - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./bin/ key: ${{ github.run_id }}