Skip to content

Commit

Permalink
build(deps): bump actions/cache from 3 to 4 (#214)
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jan 22, 2024
1 parent 011003f commit f3334b2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/dst.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit f3334b2

Please sign in to comment.