Compare commits

...
Author SHA1 Message Date
0ef631a318 Update docker.io/library/postgres Docker tag to v16
Some checks failed
/ Ansible Lint (push) Failing after 21s
/ build (pull_request) Successful in 29s
/ Ansible Lint (pull_request) Failing after 21s
2026-09-04 00:17:41 +00:00
Max
39d95a7b9f except keycloak from grouped update PRs
All checks were successful
/ build (push) Successful in 42s
/ Ansible Lint (push) Successful in 3m8s
keycloak is a critical service
separating keycloak updates makes it easier to respond quickly to
critical updates or delay them when there are breaking changes
2026-09-03 18:24:43 +02:00
Max
247cb031f2 auto update patch versions 2026-09-03 18:24:43 +02:00
4 changed files with 13 additions and 6 deletions

View file

@ -1,7 +1,7 @@
# renovate: datasource=docker depName=git.hamburg.ccc.de/ccchh/oci-images/nextcloud
nextcloud__version: 34
# renovate: datasource=docker depName=docker.io/library/postgres
nextcloud__postgres_version: 15.18
nextcloud__postgres_version: 16.15
nextcloud__fqdn: cloud.hamburg.ccc.de
nextcloud__data_dir: /data/nextcloud
nextcloud__extra_configuration: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/cloud/nextcloud/extra_configuration.config.php.j2') }}"

View file

@ -29,13 +29,20 @@
// https://docs.renovatebot.com/presets-default/#automergestablenonmajor
{
"groupName": "all stable non-major dependencies",
"groupSlug": "all-stable-minor-patch",
"groupSlug": "all-stable-minor",
"matchCurrentVersion": "!/^0/",
"matchUpdateTypes": [
"minor",
"patch"
"minor"
],
"excludePackageNames": [
"git.hamburg.ccc.de/ccchh/oci-images/keycloak"
]
},
{
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["docker.io/pretix/standalone"],

View file

@ -62,7 +62,7 @@ services:
- POSTGRES_DB=mailmandb
- POSTGRES_USER=mailman
- "POSTGRES_PASSWORD={{ secret__lists__postgres_password }}"
image: docker.io/library/postgres:12-alpine
image: docker.io/library/postgres:16-alpine
volumes:
- /opt/mailman/database:/var/lib/postgresql/data
networks:

View file

@ -3,7 +3,7 @@
services:
database:
image: docker.io/library/postgres:15-alpine
image: docker.io/library/postgres:16-alpine
environment:
- "POSTGRES_USER=pretalx"
- "POSTGRES_PASSWORD={{ secret__pretalx_db_password }}"