From a959706fbd54294c6ce2c56b9c41d133d1c71601 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 16:58:12 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/code_quality.yaml | 4 ++-- .github/workflows/integration.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_quality.yaml b/.github/workflows/code_quality.yaml index 2c6a7ae..5383a9a 100644 --- a/.github/workflows/code_quality.yaml +++ b/.github/workflows/code_quality.yaml @@ -25,14 +25,14 @@ jobs: install-hex: true - name: Retrieve Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: build-folder-cache with: path: _build/test key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-test-${{ 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/integration.yaml b/.github/workflows/integration.yaml index 7f41188..07c468f 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -26,14 +26,14 @@ jobs: install-hex: true - name: Retrieve Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: build-folder-cache with: path: _build/test key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-test-${{ 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