Skip to content

Commit 3ec3522

Browse files
authored
Merge pull request #107 from paulo-ferraz-oliveira/fix/otp24-compile-warning
Prevent OTP 24 compile-time warning
2 parents 2f2fafb + fdc29f2 commit 3ec3522

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
otp_version: ['23.1', '22.3.4.2', '21.3.8.16', '20.3.8.21']
18+
otp_version: ['24', '23', '22', '21']
1919
os: [ubuntu-latest]
2020

2121
steps:
2222
- uses: actions/checkout@v2
2323

24-
- uses: bajankristof/setup-erlang@master
24+
- uses: erlef/setup-beam@v1
2525
with:
2626
otp-version: ${{ matrix.otp_version }}
27+
rebar3-version: '3.14'
2728

2829
- name: Compile
2930
run: rebar3 compile

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
]}
1919
]},
2020
{test, [
21-
{deps, [{hackney, "1.16.0"}]}
21+
{deps, [{hackney, "1.17.4"}]}
2222
]}
2323
]}.
2424

0 commit comments

Comments
 (0)