Skip to content

Commit baeec1c

Browse files
authored
Update to Elixir 1.18 (#136)
* update version * bookworm and otp 27.2 * use 1.18.1
1 parent 79e7617 commit baeec1c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212

1313
container:
14-
image: hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612
14+
image: hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223
1515

1616
steps:
1717
- name: Install git & jq

.tool-versions

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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612 AS builder
1+
FROM hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223 AS builder
22

33
# Install SSL ca certificates
44
RUN apt-get update && \
@@ -14,7 +14,7 @@ COPY . .
1414
# Builds an escript bin/elixir_representer
1515
RUN ./bin/build.sh
1616

17-
FROM hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612
17+
FROM hexpm/elixir:1.18.1-erlang-27.2-debian-bookworm-20241223
1818
COPY --from=builder /etc/passwd /etc/passwd
1919
COPY --from=builder /elixir-representer/bin /opt/representer/bin
2020
RUN apt-get update && \

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Representer.MixProject do
55
[
66
app: :representer,
77
version: "0.1.0",
8-
elixir: "~> 1.17",
8+
elixir: "~> 1.18",
99
start_permanent: Mix.env() == :prod,
1010
deps: deps(),
1111
escript: escript()

0 commit comments

Comments
 (0)