Skip to content

Commit 67f64ca

Browse files
committed
ci: fix setup-beam requiring otp-version with elixir
The erlef/setup-beam action requires otp-version when installing Elixir. Also updated Elixir version to 1.17 for OTP 26/27 compatibility.
1 parent 4410382 commit 67f64ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ jobs:
4848
- name: Install Elixir (for Mix dependencies)
4949
uses: erlef/setup-beam@v1
5050
with:
51-
elixir-version: '1.15'
51+
otp-version: ${{ matrix.otp_version }}
52+
elixir-version: '1.17'
5253
install-hex: true
5354
install-rebar: true
5455

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
- name: Install Elixir (for Mix dependencies)
3131
uses: erlef/setup-beam@v1
3232
with:
33-
elixir-version: '1.15'
33+
otp-version: ${{ matrix.otp_version }}
34+
elixir-version: '1.17'
3435
install-hex: true
3536
install-rebar: true
3637

0 commit comments

Comments
 (0)