Compare commits

...

3 Commits

Author SHA1 Message Date
ebb06fa00d chore(deps): update elixir docker tag
Some checks failed
continuous-integration/drone/pr Build is failing
2023-06-19 12:23:26 +00:00
39ff0979c7 chore(deps): update postgres docker tag to v15 (#31)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| postgres | docker | major | `14.8-alpine` -> `15.3-alpine` |
| postgres |  | major | `14.8-alpine` -> `15.3-alpine` |

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTIuMCIsInVwZGF0ZWRJblZlciI6IjM0LjExMi4wIn0=-->

Reviewed-on: #31
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2023-06-16 11:27:56 +00:00
a30611f310 chore(deps): update postgres docker tag to v14.8 (#30)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| postgres | docker | minor | `14.5-alpine` -> `14.8-alpine` |
| postgres |  | minor | `14.5-alpine` -> `14.8-alpine` |

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTIuMCIsInVwZGF0ZWRJblZlciI6IjM0LjExMi4wIn0=-->

Reviewed-on: #30
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2023-06-14 22:51:56 +00:00
3 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ trigger:
steps:
- name: database healthcheck
image: 'postgres:14.5-alpine'
image: 'postgres:15.3-alpine'
environment:
PGUSER: postgres
PGPASSWORD: postgres
@ -37,7 +37,7 @@ steps:
restore: true
- name: test
image: 'elixir:1.14.4'
image: 'elixir:1.14.5'
environment:
MIX_ENV: test
POSTGRES_HOST: db
@ -48,7 +48,7 @@ steps:
- make test
- name: lint
image: 'elixir:1.14.4'
image: 'elixir:1.14.5'
commands:
- mix do local.rebar --force, local.hex --force, deps.get, deps.compile
- make static_code_analysis
@ -75,7 +75,7 @@ steps:
services:
- name: db
image: 'postgres:14.5-alpine'
image: 'postgres:15.3-alpine'
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres

View File

@ -1,2 +1,2 @@
erlang 24.3.4
elixir 1.14.4
elixir 1.15.0

View File

@ -3,7 +3,7 @@ version: '3.7'
services:
db:
image: 'postgres:14.5-alpine'
image: 'postgres:15.3-alpine'
hostname: &db_host db
init: true
environment:
@ -15,7 +15,7 @@ services:
- 'db_data:/var/lib/postgresql/data'
restart: unless-stopped
app:
image: 'elixir:1.14.4'
image: 'elixir:1.14.5'
hostname: app
depends_on:
- db