Skip to content

Commit 77e3452

Browse files
Update actions/cache action to v4 (#41)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d604e34 commit 77e3452

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
- name: Checkout code
2323
uses: actions/checkout@v4
2424
- name: Cache mix dependencies
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: deps
2828
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
2929
restore-keys: |
3030
${{ runner.os }}-mix-
3131
- name: Cache _build
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: _build
3535
key: ${{ runner.os }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

0 commit comments

Comments
 (0)