From 815fb7d354f24dcb39d848e6fff4a7257a04ebe6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 21:56:48 +0000 Subject: [PATCH] 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/func-tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/func-tests.yml b/.github/workflows/func-tests.yml index aabd3f5..c7603ad 100644 --- a/.github/workflows/func-tests.yml +++ b/.github/workflows/func-tests.yml @@ -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 @@ -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') }} @@ -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/*') }} @@ -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 @@ -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') }} @@ -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/*') }}