diff --git a/.github/workflows/compile-format.yaml b/.github/workflows/compile-format.yaml index c3f96e52..544e6c79 100644 --- a/.github/workflows/compile-format.yaml +++ b/.github/workflows/compile-format.yaml @@ -18,8 +18,8 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - elixir: ["1.18.0"] - otp: ["27"] + elixir: ["1.19.0"] + otp: ["28"] steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.12.1 diff --git a/Dockerfile b/Dockerfile index 98578b58..08062e3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ #=========== #(Elixir) Build Stage #=========== -FROM elixir:1.18.0-otp-27-alpine as builder-elixir +FROM elixir:1.19.0-otp-28-alpine as builder-elixir # Install git and build essentials RUN apk add --no-cache git build-base @@ -28,7 +28,7 @@ RUN mix local.hex --force && \ #================ #Deployment Stage #================ -FROM elixir:1.18.0-otp-27-alpine as deployer +FROM elixir:1.19.0-otp-28-alpine as deployer # RUN mkdir -p /app/test /app/prod RUN apk add --no-cache git bash curl netcat-openbsd build-base && rm -rf /var/cache/apk/* diff --git a/mix.exs b/mix.exs index 7d44b9e7..14f211b6 100644 --- a/mix.exs +++ b/mix.exs @@ -4,8 +4,8 @@ defmodule Refiner.MixProject do def project do [ app: :refiner, - version: "0.6.1", - elixir: "~> 1.18.0", + version: "0.7.0", + elixir: "~> 1.19.0", start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls, export: "cov"],