From 797dfcc64d2a37fc92039e3ea1cd11fa4efe0662 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 07:42:39 +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 | 6 +++--- .github/workflows/elixir_matrix.yaml | 4 ++-- .github/workflows/k8s_matrix.yaml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1be2167..6a5670e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,21 +34,21 @@ jobs: install-hex: true - name: Retrieve Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: build-folder-cache with: path: _build key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - name: Retrieve Mix Dependencies Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: mix-cache with: path: deps key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - name: Retrieve PLT Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: plt-cache with: key: | diff --git a/.github/workflows/elixir_matrix.yaml b/.github/workflows/elixir_matrix.yaml index 0db59fe..e157a9a 100644 --- a/.github/workflows/elixir_matrix.yaml +++ b/.github/workflows/elixir_matrix.yaml @@ -28,14 +28,14 @@ jobs: install-hex: true - name: Retrieve Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: build-folder-cache with: path: _build key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - name: Retrieve Mix Dependencies Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: mix-cache with: path: deps diff --git a/.github/workflows/k8s_matrix.yaml b/.github/workflows/k8s_matrix.yaml index cc298d7..8f5dbdf 100644 --- a/.github/workflows/k8s_matrix.yaml +++ b/.github/workflows/k8s_matrix.yaml @@ -29,14 +29,14 @@ jobs: install-hex: true - name: Retrieve Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: build-folder-cache with: path: _build key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - name: Retrieve Mix Dependencies Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: mix-cache with: path: deps