From 029a708ba0e5810c7b5aedde66ab9983a3700850 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:21:41 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3cfa7475..19fdc2ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,13 +57,13 @@ jobs: rust-version: 1.64.0 - name: Get deps cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: deps/ key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} - name: Get build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _build/test/ key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}