Compare commits

...

5 commits

Author SHA1 Message Date
Renovate Bot
0bb2801e98 chore(deps): update mix dependencies
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
2025-05-22 10:36:02 +00:00
32fafad196
chore: Also run renovate on push to main branch
Some checks reported errors
continuous-integration/drone/push Build was killed
2025-05-22 12:34:53 +02:00
ddee222f86
chore: Group renovate postgres updates
Some checks reported errors
continuous-integration/drone/push Build was killed
2025-05-22 12:31:31 +02:00
41634711fe
chore: Remove renovate comment about postgresql in asdf
Since postgres is now handled via docker-compose instead of asdf, the
restriction mentioned in the comment does not apply anymore.
2025-05-22 12:31:31 +02:00
cf18d304ee
chore: Ignore elixir dependency in renovate
Some checks reported errors
continuous-integration/drone/push Build was killed
It's a bit complicated to support the `-otp` postfix right now, so to
fix this right now, we'll just disable automatic updates for elixir.
2025-05-22 12:10:18 +02:00
3 changed files with 17 additions and 5 deletions

View file

@ -72,6 +72,9 @@ trigger:
event: event:
- cron - cron
- custom - custom
- push
branch:
- main
environment: environment:
LOG_LEVEL: debug LOG_LEVEL: debug

View file

@ -34,12 +34,12 @@ defmodule Mv.MixProject do
defp deps do defp deps do
[ [
{:sourceror, "~> 1.8", only: [:dev, :test]}, {:sourceror, "~> 1.8", only: [:dev, :test]},
{:live_debugger, "~> 0.1", only: [:dev]}, {:live_debugger, "~> 0.2", only: [:dev]},
{:ash_admin, "~> 0.13"}, {:ash_admin, "~> 0.13"},
{:ash_postgres, "~> 2.0"}, {:ash_postgres, "~> 2.0"},
{:ash_phoenix, "~> 2.0"}, {:ash_phoenix, "~> 2.0"},
{:ash, "~> 3.0"}, {:ash, "~> 3.0"},
{:igniter, "~> 0.5", only: [:dev, :test]}, {:igniter, "~> 0.6", only: [:dev, :test]},
{:phoenix, "~> 1.7.20"}, {:phoenix, "~> 1.7.20"},
{:phoenix_ecto, "~> 4.5"}, {:phoenix_ecto, "~> 4.5"},
{:ecto_sql, "~> 3.10"}, {:ecto_sql, "~> 3.10"},
@ -64,10 +64,10 @@ defmodule Mv.MixProject do
{:telemetry_poller, "~> 1.0"}, {:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.26"}, {:gettext, "~> 0.26"},
{:jason, "~> 1.2"}, {:jason, "~> 1.2"},
{:dns_cluster, "~> 0.1.1"}, {:dns_cluster, "~> 0.2.0"},
{:bandit, "~> 1.5"}, {:bandit, "~> 1.5"},
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false}, {:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false}, {:sobelow, "~> 0.14", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false} {:credo, "~> 1.7", only: [:dev, :test], runtime: false}
] ]
end end

View file

@ -8,8 +8,17 @@
}, },
{ {
"groupName": "asdf tool versions", "groupName": "asdf tool versions",
"description": "Keep in mind that Renovate currently does not support updating PostgreSQL via asdf.",
"matchFileNames": [".tool-versions"] "matchFileNames": [".tool-versions"]
},
{
"groupName": "postgres",
"description": "Group updates to postgres across drone ci, docker-compose.yml and other files",
"matchDepNames": ["postgres"]
},
{
"matchFileNames": [".tool-versions"],
"matchPackageNames": ["elixir"],
"enabled": false
} }
] ]
} }