Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
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]>
  • Loading branch information
dependabot[bot] authored Jan 30, 2024
1 parent 4b776d2 commit 815fb7d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/func-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Patched redis cache
id: patched-redis-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
redis/src/redis-server
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Zookeeper cache
id: zookeeper-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: tests/images/zookeeper/zookeeper.tar.gz
key: rdsync-zookeeper-${{ hashFiles('tests/images/zookeeper/zookeeper.tar.gz') }}-${{ hashFiles('Makefile') }}
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Base image cache
id: cache-base-image
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/rdsync-base-img.tgz
key: rdsync-base-img-${{ hashFiles('tests/images/base/*') }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Load patched redis
id: patched-redis-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
redis/src/redis-server
Expand All @@ -115,7 +115,7 @@ jobs:
- name: Load zookeeper
id: zookeeper-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: tests/images/zookeeper/zookeeper.tar.gz
key: rdsync-zookeeper-${{ hashFiles('tests/images/zookeeper/zookeeper.tar.gz') }}-${{ hashFiles('Makefile') }}
Expand All @@ -128,7 +128,7 @@ jobs:
- name: Load docker images
id: cache-base-image
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/rdsync-base-img.tgz
key: rdsync-base-img-${{ hashFiles('tests/images/base/*') }}
Expand Down

0 comments on commit 815fb7d

Please sign in to comment.