From f3334b29f11b9552433a3b29dd57776e3f8a6ee8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 10:01:17 -0500 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 (#214) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/cicd.yaml | 4 ++-- .github/workflows/dst.yaml | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 460227d9..a4eb33d6 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -66,7 +66,7 @@ jobs: run: go build -o resonate - name: Cache resonate binary - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -76,7 +76,7 @@ jobs: needs: [build] steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} diff --git a/.github/workflows/dst.yaml b/.github/workflows/dst.yaml index cfc4053d..e01fce35 100644 --- a/.github/workflows/dst.yaml +++ b/.github/workflows/dst.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - id: cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -35,7 +35,7 @@ jobs: run: go build -o resonate - name: Cache resonate binary if: steps.cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -56,7 +56,7 @@ jobs: steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -90,7 +90,7 @@ jobs: timeout-minutes: 150 steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -134,7 +134,7 @@ jobs: steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -191,7 +191,7 @@ jobs: steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -211,7 +211,7 @@ jobs: needs: [build, seed, dst-sqlite-1, dst-sqlite-2] steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -248,7 +248,7 @@ jobs: needs: [build, seed, dst-postgres-1, dst-postgres-2] steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }} @@ -285,7 +285,7 @@ jobs: needs: [build, seed, dst-sqlite-1, dst-postgres-1] steps: - name: Restore resonate binary - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: resonate key: resonate-${{ github.sha }}