Compare commits

...

2 Commits

Author SHA1 Message Date
f9149612a1
feat: upgrade lefthook from 1.10.10 to 1.11.3 2025-03-09 19:28:13 +00:00
15967d7453
feat: upgrade runtime in docker and ci
Match erlang, elixir, and postgres versions for `docker` and `ci`
environments.
2025-03-09 19:02:26 +00:00
3 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ trigger:
steps: steps:
- name: database healthcheck - name: database healthcheck
image: &postgres 'postgres:17.3-alpine' image: &postgres 'postgres:17.4-alpine'
environment: environment:
PGUSER: &db_user postgres PGUSER: &db_user postgres
PGPASSWORD: &db_pass postgres PGPASSWORD: &db_pass postgres
@ -44,7 +44,7 @@ steps:
path: /drone/src/deps path: /drone/src/deps
- name: dependencies and compile - name: dependencies and compile
image: &elixir 'hexpm/elixir:1.18.2-erlang-27.2.2-debian-bookworm-20250203-slim' image: &elixir 'hexpm/elixir:1.18.3-erlang-27.3-debian-bookworm-20250224-slim'
commands: commands:
- apt-get update - apt-get update
- apt-get install -y git make - apt-get install -y git make

View File

@ -1,3 +1,3 @@
erlang 27.3 erlang 27.3
elixir 1.18.3 elixir 1.18.3
lefthook 1.10.10 lefthook 1.11.3

View File

@ -1,6 +1,6 @@
ARG ELIXIR_VERSION=1.18.2 ARG ELIXIR_VERSION=1.18.3
ARG OTP_VERSION=27.2.2 ARG OTP_VERSION=27.3
ARG DEBIAN_VERSION=bookworm-20250203-slim ARG DEBIAN_VERSION=bookworm-20250224-slim
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"