From 05f0c93d41b4bc1ef578e47cf0281084f6d38939 Mon Sep 17 00:00:00 2001 From: nwittstruck Date: Fri, 15 Nov 2024 20:41:55 +0100 Subject: [PATCH] chore: upgrade elixir, otp and debian --- .github/workflows/on_push_branch__execute_ci_cd.yml | 12 ++++++------ Dockerfile | 6 +++--- mix.exs | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/on_push_branch__execute_ci_cd.yml b/.github/workflows/on_push_branch__execute_ci_cd.yml index 8e302166..492475b3 100644 --- a/.github/workflows/on_push_branch__execute_ci_cd.yml +++ b/.github/workflows/on_push_branch__execute_ci_cd.yml @@ -15,7 +15,7 @@ jobs: # Currently, this need to be synced manually with the Dockerfile. In the future, the workflow should be changed, # so that a development container is built from the Dockerfile, pushed, and then re-used in the following steps. # This would also remove the need to install cmake manually in each step: - container: hexpm/elixir:1.15.8-erlang-26.2.5-debian-bullseye-20240513-slim + container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20241111-slim steps: # See https://github.com/actions/checkout @@ -39,7 +39,7 @@ jobs: # Containers must run in Linux based operating systems runs-on: ubuntu-latest # Docker Hub image that `container-job` executes in - container: hexpm/elixir:1.15.8-erlang-26.2.5-debian-bullseye-20240513-slim + container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20241111-slim needs: build_deps @@ -95,7 +95,7 @@ jobs: check_mix_format: runs-on: ubuntu-latest - container: hexpm/elixir:1.15.8-erlang-26.2.5-debian-bullseye-20240513-slim + container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20241111-slim needs: build_deps @@ -116,7 +116,7 @@ jobs: check_mix_gettext_extract_up_to_date: runs-on: ubuntu-latest - container: hexpm/elixir:1.15.8-erlang-26.2.5-debian-bullseye-20240513-slim + container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20241111-slim needs: build_deps @@ -137,7 +137,7 @@ jobs: check_mix_sobelow: runs-on: ubuntu-latest - container: hexpm/elixir:1.15.8-erlang-26.2.5-debian-bullseye-20240513-slim + container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20241111-slim needs: build_deps @@ -159,7 +159,7 @@ jobs: check_mix_credo: runs-on: ubuntu-latest - container: hexpm/elixir:1.15.8-erlang-26.2.5-debian-bullseye-20240513-slim + container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20241111-slim needs: build_deps diff --git a/Dockerfile b/Dockerfile index 91d8c2f6..77c67803 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,9 @@ # - https://pkgs.org/ - resource for finding needed packages # - Ex: hexpm/elixir:1.13.1-erlang-24.2-debian-bullseye-20210902-slim # -ARG ELIXIR_VERSION=1.15.8 -ARG OTP_VERSION=26.2.5 -ARG DEBIAN_VERSION=bullseye-20240513-slim +ARG ELIXIR_VERSION=1.17.3 +ARG OTP_VERSION=27.1.2 +ARG DEBIAN_VERSION=bookworm-20241111-slim ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}" diff --git a/mix.exs b/mix.exs index f2a45514..7603dd72 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Mindwendel.MixProject do [ app: :mindwendel, version: "0.2.9", - elixir: "~> 1.15.8", + elixir: "~> 1.17", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(),