From 1cd28e43b8f79438b47aeb62da47089c23bea50f Mon Sep 17 00:00:00 2001 From: shibao Date: Sun, 22 Jan 2023 23:20:02 -0500 Subject: [PATCH] update elixir and npm versions --- .drone.yml | 8 ++++---- .tool-versions | 6 +++--- mix.exs | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index e6837da..1e595c1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,7 +16,7 @@ steps: - assets/node_modules/ - name: test - image: elixir:1.13.4-alpine + image: elixir:1.14.1-alpine environment: TEST_DATABASE_URL: ecto://postgres:postgres@database/lokal_test HOST: testing.example.tld @@ -29,7 +29,7 @@ steps: - npm --prefix ./assets ci --progress=false --no-audit --loglevel=error - npm run --prefix ./assets deploy - mix do phx.digest, gettext.extract - - mix test + - mix test.all - name: build and publish stable image: thegeeklab/drone-docker-buildx @@ -38,7 +38,7 @@ steps: repo: shibaobun/lokal purge: true compress: true - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64,linux/arm/v7 username: from_secret: docker_username password: @@ -55,7 +55,7 @@ steps: repo: shibaobun/lokal purge: true compress: true - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64,linux/arm/v7 username: from_secret: docker_username password: diff --git a/.tool-versions b/.tool-versions index a50d88e..e271058 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,3 +1,3 @@ -elixir 1.13.2-otp-24 -erlang 24.2 -nodejs 16.13.2 +elixir 1.14.1-otp-25 +erlang 25.1.2 +nodejs 18.12.1 diff --git a/mix.exs b/mix.exs index a0623ce..1dffe78 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Lokal.MixProject do [ app: :lokal, version: "0.1.0", - elixir: "~> 1.13", + elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), compilers: Mix.compilers(), start_permanent: Mix.env() == :prod,