diff --git a/.drone.yml b/.drone.yml index ceaf12e..74db935 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,7 +17,7 @@ steps: - .mix - name: test - image: elixir:1.14.1-alpine + image: elixir:1.14.4-alpine environment: TEST_DATABASE_URL: ecto://postgres:postgres@database/memex_test HOST: testing.example.tld diff --git a/.tool-versions b/.tool-versions index 7257540..90063db 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,3 +1,3 @@ -elixir 1.14.1-otp-25 +elixir 1.14.4-otp-25 erlang 25.1.2 nodejs 18.9.1 diff --git a/Dockerfile b/Dockerfile index b76d8b4..0e670f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM elixir:1.14.1-alpine AS build +FROM elixir:1.14.4-alpine AS build # install build dependencies RUN apk add --no-cache build-base npm git python3 diff --git a/mix.exs b/mix.exs index 46b3af2..69241ca 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Memex.MixProject do [ app: :memex, version: "0.1.11", - elixir: "1.14.1", + elixir: "1.14.4", elixirc_paths: elixirc_paths(Mix.env()), compilers: Mix.compilers(), start_permanent: Mix.env() == :prod,