From 70858ac0d4d0a7369bd7bd35e90d374591ee5dc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Jun 2023 01:56:40 +0000 Subject: [PATCH 1/5] 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] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From e4e0e5cb39f85df6d5bedfcfeedc24d9ffd72588 Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Mon, 26 Jun 2023 07:14:09 +0700 Subject: [PATCH 2/5] Update elixir.yml --- .github/workflows/elixir.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a4894d7c50775fcc63e01db7048322e641e1f1ce Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Mon, 3 Jul 2023 08:30:11 +0700 Subject: [PATCH 3/5] Update mix.exs --- mix.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index c71650b..d4034b2 100644 --- a/mix.exs +++ b/mix.exs @@ -72,7 +72,8 @@ 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 From a80250fce1a168f47bdcf5c07c09333217df7c08 Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Mon, 3 Jul 2023 08:38:33 +0700 Subject: [PATCH 4/5] Update mix.exs --- mix.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index d4034b2..5c7479e 100644 --- a/mix.exs +++ b/mix.exs @@ -73,7 +73,8 @@ defmodule ElixirExploration.MixProject do {:mimic, "~> 1.7.1", only: :test}, {:oauther, "~> 1.3"}, {:extwitter, "~> 0.13"}, - {:ssl_verify_fun, "~> 1.1.6", manager: :rebar3, only: [:test], runtime: false, override: true} + {:ssl_verify_fun, "~> 1.1.6", + manager: :rebar3, only: [:test], runtime: false, override: true} ] end From 4f50b343182f964157702b48dd0e1766399abf36 Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Mon, 3 Jul 2023 08:45:54 +0700 Subject: [PATCH 5/5] Update releases.exs --- config/releases.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,