Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/compile-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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/*
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
Loading