Skip to content

Commit 637d73b

Browse files
author
Adriano Santos
committed
update cache action
1 parent 0045ba0 commit 637d73b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ jobs:
9696
elixir-version: ${{matrix.elixir}} # Define the elixir version [required]
9797
otp-version: ${{matrix.otp}} # Define the OTP version [required]
9898

99-
- uses: actions/cache@v1
99+
- uses: actions/cache@v4
100100
id: deps-cache
101101
with:
102102
path: deps
103103
key: ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
104104

105-
- uses: actions/cache@v1
105+
- uses: actions/cache@v4
106106
id: build-cache
107107
with:
108108
path: _build

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
elixir-version: ${{matrix.elixir}}
2626
otp-version: ${{matrix.otp}}
2727

28-
- uses: actions/cache@v1
28+
- uses: actions/cache@v4
2929
id: deps-cache
3030
with:
3131
path: deps
3232
key: ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
3333

34-
- uses: actions/cache@v1
34+
- uses: actions/cache@v4
3535
id: build-cache
3636
with:
3737
path: _build

0 commit comments

Comments
 (0)