From 1c0a0b6853f1e189703187772071508ff1f44502 Mon Sep 17 00:00:00 2001 From: renovate-bot Date: Fri, 6 Oct 2023 14:19:13 +0000 Subject: [PATCH] chore(deps): update elixir docker tag to v1.15.6 (#46) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | elixir | docker | patch | `1.15.4-slim` -> `1.15.6-slim` | | elixir | | patch | `1.15.4-slim` -> `1.15.6-slim` | --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.dubas.dev/joao.dubas/ex_trainer/pulls/46 Co-authored-by: renovate-bot Co-committed-by: renovate-bot --- .drone.yml | 4 ++-- docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 4077a4b..c053edc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -37,7 +37,7 @@ steps: restore: true - name: test - image: 'elixir:1.15.4-slim' + image: 'elixir:1.15.6-slim' environment: MIX_ENV: test POSTGRES_HOST: db @@ -49,7 +49,7 @@ steps: - mix test --cover --trace --slowest 10 - name: lint - image: 'elixir:1.15.4-slim' + image: 'elixir:1.15.6-slim' commands: - mix do local.rebar --force, local.hex --force, deps.get, deps.compile - mix compile diff --git a/docker-compose.yml b/docker-compose.yml index f14ab25..b07f2bc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: - 'db_data:/var/lib/postgresql/data' restart: unless-stopped app: - image: 'elixir:1.15.4-slim' + image: 'elixir:1.15.6-slim' hostname: app depends_on: - db