From dce260bc562312c41ddd2630ddd79c3c33010dbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 07:11:13 +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/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1f205b9..3db8178 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,7 +40,7 @@ jobs: GOPATH: ${{ needs.checks.outputs.go_path }} - name: Store Artifacts in Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ github.workspace }}/dist key: test-containers-${{ github.run_id }}-${{ github.run_number }} @@ -56,7 +56,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - name: Fetch Cached Artifacts - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ github.workspace }}/dist key: test-containers-${{ github.run_id }}-${{ github.run_number }}