Skip to content

Commit

Permalink
chore: update elixir to 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
papey committed Jan 30, 2025
1 parent ac18786 commit 9453bd2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
with:
otp-version: 26
elixir-version: 1.17
elixir-version: 1.18
- run: cd neurow && mix format --check-formatted
- run: cd neurow && mix deps.get
- run: cd neurow && mix compile --warnings-as-errors
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
with:
otp-version: 26
elixir-version: 1.17
elixir-version: 1.18
- run: cd load_test && mix format --check-formatted
- run: cd load_test && mix deps.get
- run: cd load_test && mix compile --warnings-as-errors
Expand Down
2 changes: 1 addition & 1 deletion load_test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BUILDER_IMAGE=elixir
ARG VERSION=1.17-slim
ARG VERSION=1.18-slim

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

Expand Down
2 changes: 1 addition & 1 deletion load_test/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule LoadTest.MixProject do
[
app: :load_test,
version: "0.1.0",
elixir: "~> 1.17",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
releases: releases()
Expand Down
4 changes: 2 additions & 2 deletions neurow/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BUILDER_IMAGE=elixir
ARG VERSION=1.17-slim
ARG VERSION=1.18-slim

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

Expand Down Expand Up @@ -40,4 +40,4 @@ COPY --from=builder /app/_build/prod/rel/neurow /app/
ENV RELEASE_TMP=/tmp/
ENV RELEASE_COOKIE=changme

CMD ["/start.sh" ]
CMD ["/start.sh" ]
2 changes: 1 addition & 1 deletion neurow/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Neurow.MixProject do
[
app: :neurow,
version: "0.1.0",
elixir: "~> 1.17",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_paths: [
Expand Down

0 comments on commit 9453bd2

Please sign in to comment.