Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 0 additions & 65 deletions .github/workflows/update.yml

This file was deleted.

2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ ARG PGBOUNCER_VERSION

RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends postgresql-common ca-certificates && \
/usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y && \
apt-get install -y --no-install-recommends -o Dpkg::::="--force-confdef" -o Dpkg::::="--force-confold" \
"pgbouncer=${PGBOUNCER_VERSION}" postgresql-client && \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && \
Expand Down
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ authors = "The CloudNativePG Contributors"
url = "https://github.com/cloudnative-pg/pgbouncer-containers"

// PgBouncer version to install
// DO NOT MANUALLY EDIT THE CONTENT - This is updated automatically
// renovate: suite=trixie-pgdg depName=pgbouncer
pgBouncerVersion = "1.24.1-1"

// Debian base version
Expand Down
14 changes: 13 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,20 @@
"/docker-bake.hcl/"
],
"matchStrings": [
"\\/\\/\\s*renovate:\\s*datasource=(?<datasource>.*?)\\s+(versioning=(?<versioning>.*?))?\\s+\"(?<depName>[^:]+):(?<currentValue>[^\\s@]+)(@(?<currentDigest>sha256:[0-9a-f]*))?\"" ],
"\\/\\/\\s*renovate:\\s*datasource=(?<datasource>.*?)\\s+(versioning=(?<versioning>.*?))?\\s*[A-Za-z0-9_-]+\\s*=\\s*\"(?<depName>[^:]+):(?<currentValue>[^\\s@]+)(@(?<currentDigest>sha256:[0-9a-f]*))?\""
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
},
{
"customType": "regex",
"managerFilePatterns": [
"/docker-bake.hcl/"
],
"matchStrings": [
"\\/\\/\\s*renovate:\\s*?(suite=(?<suite>.*?))?\\s*depName=(?<depName>.*?)?\\s*[A-Za-z0-9_-]+\\s*=\\s*\"(?<currentValue>.*)\""
],
"registryUrlTemplate": "https://download.postgresql.org/pub/repos/apt?suite={{#if suite}}{{suite}}{{else}}stable{{/if}}&components=main&binaryArch=amd64",
"datasourceTemplate": "deb"
}
]
}