Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# Specify the OTP and Elixir versions to use when building
# and running the workflow steps.
matrix:
otp: ['28.1.1'] # Define the OTP version [required]
otp: ['28.4'] # Define the OTP version [required]
elixir: ['1.19.5'] # Define the elixir version [required]
steps:
# Step: Setup Elixir + Erlang image as the base.
Expand Down
2 changes: 1 addition & 1 deletion .mise.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[tools]
elixir = "1.19.5-otp-28"
erlang = "28.1.1"
erlang = "28.4"
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image
# - https://hub.docker.com/_/debian/tags?name=trixie-slim - for the release image
# - https://pkgs.org/ - resource for finding needed packages
# - Ex: docker.io/hexpm/elixir:1.19.5-erlang-28.1.1-debian-trixie-20251117-slim
# - Ex: docker.io/hexpm/elixir:1.19.5-erlang-28.4-debian-trixie-20260223-slim
#
ARG ELIXIR_VERSION=1.19.5
ARG OTP_VERSION=28.1.1
ARG DEBIAN_VERSION=trixie-20260202-slim
ARG OTP_VERSION=28.4
ARG DEBIAN_VERSION=trixie-20260223-slim

ARG BUILDER_IMAGE="docker.io/hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="docker.io/debian:${DEBIAN_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This project uses [mise](https://mise.jdx.dev/) for version management:
mise install
```

This installs Elixir 1.19.5 (OTP 28) and Erlang 28.1.1 as specified in `.mise.toml`.
This installs Elixir 1.19.5 (OTP 28) and Erlang 28.4 as specified in `.mise.toml`.

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ defmodule Huddlz.MixProject do
{:ash_json_api, "~> 1.0"},
{:oban, "~> 2.0"},
{:ash_oban, "~> 0.6"},
{:usage_rules, "~> 0.1", only: [:dev]},
{:usage_rules, "~> 1.0", only: [:dev]},
{:bcrypt_elixir, "~> 3.0"},
{:ash_ops, "~> 0.2.4"},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
Expand Down
Loading
Loading