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
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Elixir image as the base
FROM elixir:1.18.3
FROM elixir:1.19.3-otp-28

# Set-up for switching to non-root user
ARG USERNAME=vscode
Expand Down Expand Up @@ -51,4 +51,4 @@ RUN mix local.hex --force && mix local.rebar --force
# Install Commitizen locally
RUN pipx ensurepath \
&& pipx install commitizen \
&& pipx upgrade commitizen
&& pipx upgrade commitizen
4 changes: 2 additions & 2 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
# and running the workflow steps. These should match the versions in the
# devcontainer Dockerfile.
matrix:
otp: ['27.3.4'] # Define the OTP version [required]
elixir: ['1.18.3'] # Define the elixir version [required]
otp: ['28.1.1'] # Define the OTP version [required]
elixir: ['1.19.3'] # Define the elixir version [required]
steps:
# Step: Setup Elixir + Erlang image as the base.
- name: Set up Elixir
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you want to go it alone, you'll need something along the following lines:

Prerequisites:

- Elixir 1.18.x
- Elixir 1.19.x
- Follow the [installation instructions](https://elixir-lang.org/install.html) to get
this installed.
- A Postgres database server
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule BathLARP.MixProject do
[
app: :bathlarp,
version: "0.1.0",
elixir: "~> 1.18",
elixir: "~> 1.19",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
Expand Down