From ee2d1ccb20450a375629c5a79901b2bd3c65fbd7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 22:12:06 +0000 Subject: [PATCH] chore(deps): 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/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 67e24f9..76c9164 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -42,7 +42,7 @@ jobs: # Cache Alpine Base Images - name: Cache Docker Base Images id: cache-docker-images - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: docker-base-images-${{ matrix.arch }}-${{ runner.os }}-${{ hashFiles('Dockerfile') }} @@ -64,7 +64,7 @@ jobs: # Cache Docker Compose - name: Cache Docker Compose id: cache-compose - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /usr/local/bin/docker-compose key: compose-${{ runner.os }}-v2.19.1