Skip to content

Commit

Permalink
ci: bump actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ahamez committed Oct 8, 2024
1 parent 0a2539b commit 455db09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down

0 comments on commit 455db09

Please sign in to comment.