Skip to content

Commit 88472af

Browse files
chore(deps): bump actions/cache from 4 to 5 (#75)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 568a9a9 commit 88472af

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
otp-version: ${{matrix.otp}}
2525
elixir-version: ${{matrix.elixir}}
26-
- uses: actions/cache@v4
26+
- uses: actions/cache@v5
2727
with:
2828
path: |
2929
deps
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
otp-version: 28.x
5050
elixir-version: 1.18.x
51-
- uses: actions/cache@v4
51+
- uses: actions/cache@v5
5252
with:
5353
path: |
5454
deps
@@ -77,7 +77,7 @@ jobs:
7777
# Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones
7878
# Cache key based on Elixir & Erlang version (also useful when running in matrix)
7979
- name: Restore PLT cache
80-
uses: actions/cache/restore@v4
80+
uses: actions/cache/restore@v5
8181
id: plt_cache
8282
with:
8383
key: |
@@ -98,7 +98,7 @@ jobs:
9898
# By default, the GitHub Cache action will only save the cache if all steps in the job succeed,
9999
# so we separate the cache restore and save steps in case running dialyzer fails.
100100
- name: Save PLT cache
101-
uses: actions/cache/save@v4
101+
uses: actions/cache/save@v5
102102
if: steps.plt_cache.outputs.cache-hit != 'true'
103103
id: plt_cache_save
104104
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
elixir-version: ${{matrix.elixir}}
3030
if: ${{ steps.release.outputs.release_created }}
3131

32-
- uses: actions/cache@v4
32+
- uses: actions/cache@v5
3333
id: cache
3434
if: ${{ steps.release.outputs.release_created }}
3535
with:

0 commit comments

Comments
 (0)