From cc49a391b473ca65cfcc4fe18dd23a9c673f7a05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 01:53:26 +0000 Subject: [PATCH] Bump elixir from 1.14.5-alpine to 1.15.0-alpine (#181) * 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] * Update elixir.yml * Update mix.exs * Update mix.exs * Update releases.exs --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bervianto Leo Pratama --- .github/workflows/elixir.yml | 2 +- Dockerfile | 2 +- config/releases.exs | 2 +- mix.exs | 4 +++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index a378797..491c9ea 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index d4c0918..2af2d9b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/config/releases.exs b/config/releases.exs index 77e23d9..84714c2 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -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, diff --git a/mix.exs b/mix.exs index c71650b..5c7479e 100644 --- a/mix.exs +++ b/mix.exs @@ -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