Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
deps
Expand All @@ -48,7 +48,7 @@ jobs:
with:
otp-version: 28.x
elixir-version: 1.18.x
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
deps
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
# Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones
# Cache key based on Elixir & Erlang version (also useful when running in matrix)
- name: Restore PLT cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: plt_cache
with:
key: |
Expand All @@ -98,7 +98,7 @@ jobs:
# By default, the GitHub Cache action will only save the cache if all steps in the job succeed,
# so we separate the cache restore and save steps in case running dialyzer fails.
- name: Save PLT cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: steps.plt_cache.outputs.cache-hit != 'true'
id: plt_cache_save
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
elixir-version: ${{matrix.elixir}}
if: ${{ steps.release.outputs.release_created }}

- uses: actions/cache@v4
- uses: actions/cache@v5
id: cache
if: ${{ steps.release.outputs.release_created }}
with:
Expand Down