Skip to content

Commit

Permalink
Bump elixir from 1.14.5-alpine to 1.15.0-alpine (#181)
Browse files Browse the repository at this point in the history
* Bump elixir from 1.14.5-alpine to 1.15.0-alpine

Bumps elixir from 1.14.5-alpine to 1.15.0-alpine.

---
updated-dependencies:
- dependency-name: elixir
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update elixir.yml

* Update mix.exs

* Update mix.exs

* Update releases.exs

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bervianto Leo Pratama <bervianto.leo@gmail.com>
  • Loading branch information
dependabot[bot] and berviantoleo authored Jul 3, 2023
1 parent aaeab32 commit cc49a39
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
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

0 comments on commit cc49a39

Please sign in to comment.