Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 3 to 4 #17

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading