Skip to content

Commit 50b9173

Browse files
committed
Update checkout and cache actions to v3
1 parent 1be500c commit 50b9173

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
elixir: ["1.14"]
1919
otp: ["25"]
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- uses: erlef/setup-beam@v1
2323
with:
2424
otp-version: ${{ matrix.otp }}
2525
elixir-version: ${{ matrix.elixir }}
26-
- uses: actions/cache@v2
26+
- uses: actions/cache@v3
2727
with:
2828
path: deps
2929
key: ${{ matrix.os }}-otp_${{ matrix.otp }}-elixir_${{ matrix.elixir }}-mix_${{ hashFiles('**/mix.lock') }}
@@ -46,12 +46,12 @@ jobs:
4646
elixir: ["1.14", "1.13", "1.12"]
4747
otp: ["25", "24", "23"]
4848
steps:
49-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v3
5050
- uses: erlef/setup-beam@v1
5151
with:
5252
otp-version: ${{ matrix.otp }}
5353
elixir-version: ${{ matrix.elixir }}
54-
- uses: actions/cache@v2
54+
- uses: actions/cache@v3
5555
with:
5656
path: deps
5757
key: ${{ matrix.os }}-otp_${{ matrix.otp }}-elixir_${{ matrix.elixir }}-mix_${{ hashFiles('**/mix.lock') }}

0 commit comments

Comments
 (0)