File tree Expand file tree Collapse file tree 13 files changed +17
-16
lines changed
Expand file tree Collapse file tree 13 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 77
88jobs :
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
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 :
Original file line number Diff line number Diff line change 77
88jobs :
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- FROM elixir:1.12.3 -alpine
1+ FROM elixir:1.16.3-otp-26 -alpine
22RUN apk update && apk upgrade
33RUN apk add bash imagemagick curl gcc make libc-dev libgcc && rm -rf /var/cache/apk/*
44
Original file line number Diff line number Diff 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" } ,
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments