From f6dc41498b794435f829b7637568f95e6c29d3e6 Mon Sep 17 00:00:00 2001 From: shibao Date: Mon, 30 Dec 2024 19:02:04 -0500 Subject: [PATCH] update versions --- .drone.yml | 2 +- .tool-versions | 6 +++--- Dockerfile | 2 +- mix.exs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index bf2f37e..5c2390b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,7 +17,7 @@ steps: - .mix - name: test - image: elixir:1.17.0-alpine + image: elixir:1.18.1-alpine environment: TEST_DATABASE_URL: ecto://postgres:postgres@database/memex_test HOST: testing.example.tld diff --git a/.tool-versions b/.tool-versions index 351230f..f868fa2 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,3 +1,3 @@ -elixir 1.17.0-otp-27 -erlang 27.0 -nodejs 22.3.0 +elixir 1.18.1-otp-27 +erlang 27.2 +nodejs 23.5.0 diff --git a/Dockerfile b/Dockerfile index ce06b11..da751ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM elixir:1.17.0-alpine AS build +FROM elixir:1.18.1-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 7ec218e..84896bd 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Memex.MixProject do [ app: :memex, version: "0.1.16", - elixir: "1.17.0", + elixir: "1.18.1", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(),