Skip to content

Commit 4f4c9db

Browse files
committed
deps: Update Erlang/Elixir
1 parent d62ab7a commit 4f4c9db

File tree

13 files changed

+17
-16
lines changed

13 files changed

+17
-16
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
lint:
10-
runs-on: ubuntu-20.04 # Remember to update this when changing Erlang version. See https://github.com/erlef/setup-beam
10+
runs-on: ubuntu-22.04 # Remember to update this when changing Erlang version. See https://github.com/erlef/setup-beam
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: erlef/setup-beam@v1
@@ -18,7 +18,7 @@ jobs:
1818
run: mix format --check-formatted
1919

2020
test:
21-
runs-on: ubuntu-20.04 # Remember to update this when changing Erlang version. See https://github.com/erlef/setup-beam
21+
runs-on: ubuntu-22.04 # Remember to update this when changing Erlang version. See https://github.com/erlef/setup-beam
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
services:

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
cypress:
10-
runs-on: ubuntu-20.04 # Remember to update this when changing Erlang version. See https://github.com/erlef/setup-beam
10+
runs-on: ubuntu-22.04 # Remember to update this when changing Erlang version. See https://github.com/erlef/setup-beam
1111
services:
1212
db:
1313
image: captainfact/dev-db:latest

.tool-versions

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
erlang 23.3.4.18
2-
elixir 1.12.3-otp-23
1+
erlang 26.2.5.16
2+
elixir 1.16.3-otp-26
3+
1password latest

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM elixir:1.12.3-alpine
1+
FROM elixir:1.16.3-otp-26-alpine
22
RUN apk update && apk upgrade
33
RUN apk add bash imagemagick curl gcc make libc-dev libgcc && rm -rf /var/cache/apk/*
44

apps/cf/mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defmodule CF.Mixfile do
1010
config_path: "../../config/config.exs",
1111
deps_path: "../../deps",
1212
lockfile: "../../mix.lock",
13-
elixir: "~> 1.6",
13+
elixir: "~> 1.16",
1414
elixirc_paths: elixirc_paths(Mix.env()),
1515
build_embedded: Mix.env() == :prod,
1616
start_permanent: Mix.env() == :prod,
@@ -50,7 +50,7 @@ defmodule CF.Mixfile do
5050
{:html_entities, "~> 0.3"},
5151
{:httpoison, "~> 2.2"},
5252
{:poison, "~> 3.1"},
53-
{:csv, "~> 1.4.4"},
53+
{:csv, "~> 3.2"},
5454
{:not_qwerty123, "~> 2.2"},
5555
{:bamboo, "~> 1.7.1"},
5656
{:hackney, "~> 1.17"},

apps/cf_atom_feed/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule CF.AtomFeed.Mixfile do
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",
1111
lockfile: "../../mix.lock",
12-
elixir: "~> 1.6",
12+
elixir: "~> 1.16",
1313
elixirc_paths: elixirc_paths(Mix.env()),
1414
compilers: Mix.compilers(),
1515
start_permanent: Mix.env() == :prod,

apps/cf_atom_feed/test/comments_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ defmodule CF.AtomFeed.CommentsTest do
1818
assert feed =~ """
1919
<?xml version="1.0" encoding="UTF-8"?>
2020
<feed xmlns="http://www.w3.org/2005/Atom">
21-
<link href="https://feed.captainfact.io/comments/" rel="self"/>
21+
<link rel="self" href="https://feed.captainfact.io/comments/"/>
2222
<author>
2323
<name>CaptainFact</name>
2424
<email>[email protected]</email>

apps/cf_graphql/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule CF.Graphql.Mixfile do
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",
1111
lockfile: "../../mix.lock",
12-
elixir: "~> 1.6",
12+
elixir: "~> 1.16",
1313
elixirc_paths: elixirc_paths(Mix.env()),
1414
compilers: [:phoenix] ++ Mix.compilers(),
1515
build_embedded: Mix.env() == :prod,

apps/cf_jobs/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule CF.Jobs.Mixfile do
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",
1111
lockfile: "../../mix.lock",
12-
elixir: "~> 1.6",
12+
elixir: "~> 1.16",
1313
elixirc_paths: elixirc_paths(Mix.env()),
1414
build_embedded: Mix.env() == :prod,
1515
start_permanent: Mix.env() == :prod,

apps/cf_rest_api/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defmodule CF.RestApi.Mixfile do
1010
config_path: "../../config/config.exs",
1111
deps_path: "../../deps",
1212
lockfile: "../../mix.lock",
13-
elixir: "~> 1.6",
13+
elixir: "~> 1.16",
1414
elixirc_paths: elixirc_paths(Mix.env()),
1515
build_embedded: Mix.env() == :prod,
1616
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)