Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit 62a2b71

Browse files
authored
chore: update Elixir to 1.15.7 and OTP to 26.1.1 (#310)
1 parent ad13581 commit 62a2b71

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
otp: [26.0.2]
15-
elixir: [1.15.4]
14+
otp: [26.1.2]
15+
elixir: [1.15.7]
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -55,8 +55,8 @@ jobs:
5555
- uses: erlef/setup-beam@v1
5656
id: beam
5757
with:
58-
otp-version: 26.0.2
59-
elixir-version: 1.15.4
58+
otp-version: 26.1.2
59+
elixir-version: 1.15.7
6060
- uses: actions/cache@v3
6161
with:
6262
path: |
@@ -80,8 +80,8 @@ jobs:
8080
id: beam
8181
uses: erlef/setup-beam@v1
8282
with:
83-
otp-version: 26.0.2
84-
elixir-version: 1.15.4
83+
otp-version: 26.1.2
84+
elixir-version: 1.15.7
8585

8686
# Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones
8787
# Cache key based on Elixir & Erlang version (also useful when running in matrix)

.rtx.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[tools]
2-
erlang = "26.0.2"
3-
elixir = "1.15.5-otp-26"
2+
erlang = "26.1.2"
3+
elixir = "1.15.7-otp-26"
44
zig = "0.11.0"

test/next_ls/hover_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@ defmodule NextLS.HoverTest do
195195
"contents" => %{
196196
"kind" => "markdown",
197197
"value" =>
198-
"## :erlang.atom_to_binary/1\n\n" <>
198+
"## Atom.to_string/1\n\n" <>
199199
_
200200
},
201201
"range" => %{
202202
"start" => %{"character" => 14, "line" => 10},
203-
"end" => %{"character" => 27, "line" => 10}
203+
"end" => %{"character" => 22, "line" => 10}
204204
}
205205
},
206206
500

0 commit comments

Comments
 (0)