Skip to content

Commit c8c1d58

Browse files
committed
Upgrade Elixir 1.14.1
1 parent 890b6b3 commit c8c1d58

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/elixir.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- name: Set up Elixir
2626
uses: erlef/setup-elixir@885971a72ed1f9240973bd92ab57af8c1aa68f24
2727
with:
28-
elixir-version: "1.12.3" # Define the elixir version [required]
29-
otp-version: "22" # Define the OTP version [required]
28+
elixir-version: "1.14.1" # Define the elixir version [required]
29+
otp-version: "25" # Define the OTP version [required]
3030
- name: Restore dependencies cache
3131
uses: actions/cache@v2
3232
with:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM elixir:1.12.3-alpine as build
1+
FROM elixir:1.14.1-alpine as build
22

33
# install build dependencies
44
RUN apk add --update git build-base nodejs npm yarn python3
@@ -36,7 +36,7 @@ RUN mix release
3636

3737
# prepare release image
3838
FROM alpine:3.16 as app
39-
RUN apk add --update bash openssl
39+
RUN apk upgrade --no-cache && apk add --update bash openssl libgcc libstdc++ ncurses-libs
4040

4141
RUN mkdir /app
4242
WORKDIR /app

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ Please always chekcout the latest release documentation for Phoenix from [here](
5555

5656
#### Stack Versions
5757

58-
**Elixir:** `1.12.3`
58+
**Elixir:** `1.14.1`
5959

60-
**Erlang/OTP:** `22`
60+
**Erlang/OTP:** `25`
6161

6262
**Phoenix:** `1.6.0`
6363

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Coliving.MixProject do
55
[
66
app: :coliving,
77
version: "0.6.0",
8-
elixir: "~> 1.12.3",
8+
elixir: "~> 1.14.1",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
compilers: [:phoenix] ++ Mix.compilers(),
1111
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)