Skip to content

Commit 11d308b

Browse files
committed
Use Elixir 14
Elixir 13 is not available for Erlang 26 so might as well jump to 14 everywhere.
1 parent 5435692 commit 11d308b

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ On the other hand, some OSes won't run older Erlangs because of library changes,
4949
Just specify on the command line any of the `ERLANGVERSION`, `NODEVERSION`, or `ELIXIRVERSION` environment variables:
5050

5151
```
52-
NODEVERSION=14 ELIXIRVERSION=v1.13.4 ERLANGVERSION=24.3.4.7 ./build.sh platform debian-jessie
52+
NODEVERSION=14 ELIXIRVERSION=v1.14.5 ERLANGVERSION=24.3.4.7 ./build.sh platform debian-jessie
5353
```
5454

5555
## Building images for other architectures

bin/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set -e
3131
# Defaults updated 2023-03-20
3232
NODEVERSION=${NODEVERSION:-14}
3333
ERLANGVERSION=${ERLANGVERSION:-24.3.4.10}
34-
ELIXIRVERSION=${ELIXIRVERSION:-v1.13.4}
34+
ELIXIRVERSION=${ELIXIRVERSION:-v1.14.5}
3535

3636

3737
# This works if we're not called through a symlink

bin/install-elixir.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
set -e
2929

3030

31-
ELIXIR_VSN=${ELIXIRVERSION:-v1.13.4}
31+
ELIXIR_VSN=${ELIXIRVERSION:-v1.14.5}
3232
ERLANG_VSN=`erl -noshell -eval 'io:fwrite(erlang:system_info(otp_release)), halt().'`
3333
# See https://github.com/hexpm/bob
3434
URL=https://repo.hex.pm/builds/elixir/${ELIXIR_VSN}-otp-${ERLANG_VSN}.zip

dockerfiles/almalinux-8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ARG js=js
3030
ARG erlang=erlang
3131
# Select version of Node, Erlang and Elixir to install
3232
ARG erlangversion=24.3.4.10
33-
ARG elixirversion=v1.13.4
33+
ARG elixirversion=v1.14.5
3434
ARG nodeversion=14
3535

3636
# Create Jenkins user and group

dockerfiles/almalinux-9

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ARG js=js
3030
ARG erlang=erlang
3131
# Select version of Node, Erlang and Elixir to install
3232
ARG erlangversion=24.3.4.10
33-
ARG elixirversion=v1.13.4
33+
ARG elixirversion=v1.14.5
3434
ARG nodeversion=14
3535

3636
# Create Jenkins user and group

dockerfiles/centos-7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ARG js=js
3030
ARG erlang=erlang
3131
# Select version of Node, Erlang and Elixir to install
3232
ARG erlangversion=24.3.4.10
33-
ARG elixirversion=v1.13.4
33+
ARG elixirversion=v1.14.5
3434
ARG nodeversion=14
3535

3636
# Create Jenkins user and group

dockerfiles/debian-bullseye

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ARG js=js
3232
ARG erlang=erlang
3333
# Select version of Node, Erlang and Elixir
3434
ARG erlangversion=24.3.4.10
35-
ARG elixirversion=v1.13.4
35+
ARG elixirversion=v1.14.5
3636
ARG nodeversion=14
3737

3838
# Create Jenkins user and group

dockerfiles/debian-buster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ARG js=js
3232
ARG erlang=erlang
3333
# Select version of Node, Erlang and Elixir
3434
ARG erlangversion=24.3.4.10
35-
ARG elixirversion=v1.13.4
35+
ARG elixirversion=v1.14.5
3636
ARG nodeversion=14
3737

3838
# Create Jenkins user and group

dockerfiles/ubuntu-bionic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ARG js=js
3030
ARG erlang=erlang
3131
# Select version of Node, Erlang and Elixir to install
3232
ARG erlangversion=24.3.4.10
33-
ARG elixirversion=v1.13.4
33+
ARG elixirversion=v1.14.5
3434
ARG nodeversion=14
3535

3636
# Create Jenkins user and group

dockerfiles/ubuntu-focal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ARG js=js
3030
ARG erlang=erlang
3131
# Select version of Node, Erlang and Elixir to install
3232
ARG erlangversion=24.3.4.10
33-
ARG elixirversion=v1.13.4
33+
ARG elixirversion=v1.14.5
3434
ARG nodeversion=14
3535

3636
# Create Jenkins user and group

0 commit comments

Comments
 (0)