From 5c1dd3613785c580b7152c6fd6ae5b6bf5e19094 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Nov 2025 00:21:20 +0000 Subject: [PATCH] Bump elixir from 1.18.0-otp-27-alpine to 1.19.0-otp-28-alpine Bumps elixir from 1.18.0-otp-27-alpine to 1.19.0-otp-28-alpine. --- updated-dependencies: - dependency-name: elixir dependency-version: 1.19.0-otp-28-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: Pranay Valson --- .github/workflows/compile-format.yaml | 4 ++-- Dockerfile | 4 ++-- mix.exs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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"],