From bdddf5b6544e096e9aaa4a55bef5023383ff268d Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Tue, 8 Oct 2024 22:33:31 +0200 Subject: [PATCH] ci: bump actions/cache to v4 --- .github/workflows/elixir.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 8472b2a..8f0ed0f 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -46,19 +46,19 @@ jobs: otp-version: ${{matrix.otp}} - name: Restore dependencies cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: deps key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }} - name: Restore PLT cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: priv/plts key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }} - name: Restore conformance-test-runner - uses: actions/cache@v3 + uses: actions/cache@v4 id: compile-conformance-test-runner with: path: conformance-bin