From 455db096ebf8ce7ce02ef78a50a71184191ee401 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 +++--- .github/workflows/mutation_testing.yml | 2 +- 2 files changed, 4 insertions(+), 4 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 diff --git a/.github/workflows/mutation_testing.yml b/.github/workflows/mutation_testing.yml index c52518d..4dc05ea 100644 --- a/.github/workflows/mutation_testing.yml +++ b/.github/workflows/mutation_testing.yml @@ -30,7 +30,7 @@ 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') }}