Skip to content

Commit d6b706b

Browse files
Update to Elixir 1.19
1 parent 81bb2bd commit d6b706b

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/elixir_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-24.04
88

99
container:
10-
image: hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223
10+
image: hexpm/elixir:1.19.0-erlang-28.1-debian-bookworm-20251020
1111

1212
steps:
1313
- name: Install git
@@ -53,7 +53,7 @@ jobs:
5353
id: plt-cache
5454
with:
5555
path: priv/plts
56-
key: elixir:1.18.1-erlang-27.2-debian-bookworm-20241223-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}-v3
56+
key: elixir:1.19.0-erlang-28.1-debian-bookworm-20251020-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}-v3
5757

5858
- name: Create PLTs
5959
if: steps.plt-cache.outputs.cache-hit != 'true'

.github/workflows/elixir_test_external.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-24.04
88

99
container:
10-
image: hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223
10+
image: hexpm/elixir:1.19.0-erlang-28.1-debian-bookworm-20251020
1111

1212
steps:
1313
- name: Install git

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.18.1-otp-27
2-
erlang 27.2
1+
elixir 1.19.0-otp-28
2+
erlang 28.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223 as builder
1+
FROM hexpm/elixir:1.19.0-erlang-28.1-debian-bookworm-20251020 as builder
22

33
RUN apt-get update && \
44
apt-get install bash -y
@@ -13,7 +13,7 @@ COPY . .
1313
# Builds an escript bin/elixir_analyzer
1414
RUN ./bin/build.sh
1515

16-
FROM hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223
16+
FROM hexpm/elixir:1.19.0-erlang-28.1-debian-bookworm-20251020
1717
COPY --from=builder /etc/passwd /etc/passwd
1818

1919
COPY --from=builder /elixir-analyzer/bin /opt/analyzer/bin

elixir

Submodule elixir updated 70 files

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule ElixirAnalyzer.MixProject do
55
[
66
app: :elixir_analyzer,
77
version: "0.1.0",
8-
elixir: "~> 1.18",
8+
elixir: "~> 1.19",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,
1111
# Turn off protocol consolidation to avoid warning in analyzed code

0 commit comments

Comments
 (0)