Skip to content

Commit ea444fd

Browse files
author
vtm9
committed
Update elixir and deps versions
1 parent b8974bb commit ea444fd

File tree

5 files changed

+42
-42
lines changed

5 files changed

+42
-42
lines changed

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
if: github.repository == 'hexlet-codebattle/codebattle'
10-
runs-on: ubuntu-16.04
10+
runs-on: ubuntu-20.04
1111

1212
services:
1313
db:
@@ -35,8 +35,8 @@ jobs:
3535

3636
- uses: erlef/setup-beam@v1
3737
with:
38-
otp-version: "23.x"
39-
elixir-version: "1.11.x"
38+
otp-version: "24.x"
39+
elixir-version: "1.12.3"
4040

4141
- uses: actions/cache@v2
4242
with:

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
jobs:
88
build:
9-
runs-on: ubuntu-16.04
9+
runs-on: ubuntu-20.04
1010

1111
services:
1212
db:
@@ -22,8 +22,8 @@ jobs:
2222
- uses: actions/checkout@v2
2323
- uses: erlef/setup-beam@v1
2424
with:
25-
otp-version: "23.x"
26-
elixir-version: "1.11.x"
25+
otp-version: "24.x"
26+
elixir-version: "1.12.3"
2727

2828
- uses: actions/cache@v2
2929
with:

services/app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM elixir:1.11.2 AS compile-image
1+
FROM elixir:1.12.3 AS compile-image
22
ENV MIX_ENV=prod
33

44
WORKDIR /opt/app

services/app/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM elixir:1.11.2
1+
FROM elixir:1.12.3
22

33
RUN mix local.hex --force \
44
&& mix local.rebar --force

0 commit comments

Comments
 (0)