Skip to content

Commit c9e7bb9

Browse files
committed
Fix CI build
2 parents 84e580f + 0c8e67a commit c9e7bb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/boundary.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
CACHE_VERSION: v2
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
- uses: erlef/setup-elixir@v1
1616
with:
1717
otp-version: 26.0
1818
elixir-version: 1.15.4
1919

2020
- name: Restore cached deps
21-
uses: actions/cache@v1
21+
uses: actions/cache@v4
2222
with:
2323
path: deps
2424
key: deps-${{ env.CACHE_VERSION }}-${{ github.ref }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
@@ -27,7 +27,7 @@ jobs:
2727
deps-${{ env.CACHE_VERSION }}-
2828
2929
- name: Restore cached build
30-
uses: actions/cache@v1
30+
uses: actions/cache@v4
3131
with:
3232
path: _build
3333
key: build-${{ env.CACHE_VERSION }}-${{ github.ref }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

0 commit comments

Comments
 (0)