Skip to content

Commit 11afe90

Browse files
authored
chore(bump-elixir): Bump Elixir to 1.18 (#50)
1 parent ac18786 commit 11afe90

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
1212
with:
1313
otp-version: 26
14-
elixir-version: 1.17
14+
elixir-version: 1.18
1515
- run: cd neurow && mix format --check-formatted
1616
- run: cd neurow && mix deps.get
1717
- run: cd neurow && mix compile --warnings-as-errors
@@ -25,7 +25,7 @@ jobs:
2525
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
2626
with:
2727
otp-version: 26
28-
elixir-version: 1.17
28+
elixir-version: 1.18
2929
- run: cd load_test && mix format --check-formatted
3030
- run: cd load_test && mix deps.get
3131
- run: cd load_test && mix compile --warnings-as-errors

load_test/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BUILDER_IMAGE=elixir
2-
ARG VERSION=1.17-slim
2+
ARG VERSION=1.18-slim
33

44
FROM ${BUILDER_IMAGE}:${VERSION} AS builder
55

load_test/mix.exs

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

neurow/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BUILDER_IMAGE=elixir
2-
ARG VERSION=1.17-slim
2+
ARG VERSION=1.18-slim
33

44
FROM ${BUILDER_IMAGE}:${VERSION} AS builder
55

@@ -40,4 +40,4 @@ COPY --from=builder /app/_build/prod/rel/neurow /app/
4040
ENV RELEASE_TMP=/tmp/
4141
ENV RELEASE_COOKIE=changme
4242

43-
CMD ["/start.sh" ]
43+
CMD ["/start.sh" ]

neurow/mix.exs

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

0 commit comments

Comments
 (0)