Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump elixir from 1.14.5-alpine to 1.15.0-alpine #181

Merged
merged 5 commits into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
otp: ['24', '25']
elixir-version: ['1.13', '1.14']
elixir-version: ['1.14', '1.15']
services:
postgres:
image: postgres:15-alpine
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM elixir:1.14.5-alpine AS build
FROM elixir:1.15.0-alpine AS build
# install build dependencies
RUN apk add --no-cache build-base npm git python3
# prepare build dir
Expand Down
2 changes: 1 addition & 1 deletion config/releases.exs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ secret_key_base =

host_name =
if System.get_env("APP_NAME"),
do: System.get_env("APP_NAME") <> 'gigalixirapp.com',
do: System.get_env("APP_NAME") <> ~c"gigalixirapp.com",
else: System.get_env("HOSTNAME")

config :elixir_exploration, ElixirExplorationWeb.Endpoint,
Expand Down
4 changes: 3 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ defmodule ElixirExploration.MixProject do
{:sobelow, "~> 0.11", only: :dev},
{:mimic, "~> 1.7.1", only: :test},
{:oauther, "~> 1.3"},
{:extwitter, "~> 0.13"}
{:extwitter, "~> 0.13"},
{:ssl_verify_fun, "~> 1.1.6",
manager: :rebar3, only: [:test], runtime: false, override: true}
]
end

Expand Down
Loading