From 1b082e5b73f3766147614c0af185f7cf2531b82b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 03:55:29 +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') }}