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
6 changes: 5 additions & 1 deletion postgis/test/check-extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ spec:
containers:
- name: data-test
env:
# Clear the image-baked PGSSLROOTCERT=system so libpq doesn't
# try to verify the CNPG self-signed CA against the OS trust store.
- name: PGSSLROOTCERT
- name: EXT_VERSION
value: ($values.version)
- name: DB_URI
valueFrom:
secretKeyRef:
name: (join('-', [$values.name, 'app']))
key: uri
image: alpine/psql:latest
# renovate: datasource=docker depName=alpine/psql versioning=docker
image: alpine/psql:18.4@sha256:51ef105226058360688250fedeac342f020b21d8d3e59dcf9c1fee04f638831c
command: ['sh', '-c']
args:
- |
Expand Down
8 changes: 5 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
":automergeMinor",
":automergeDigest"
],
"ignorePaths": [],
"enabledManagers": [
"github-actions",
"custom.regex"
Expand Down Expand Up @@ -51,15 +52,16 @@
"datasourceTemplate": "deb"
},
{
"description": "updates the Taskfile and GitHub Actions workflow dependencies",
"description": "updates the Taskfile, test files and GitHub Actions workflow dependencies",
"customType": "regex",
"managerFilePatterns": [
"Taskfile.yml",
".github/workflows/*.yml"
".github/workflows/*.yml",
"**/test/*.yaml"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: currentValue=(?<currentValue>[^\\s]+?))?\\s+[A-Za-z0-9_]+?_SHA\\s*:\\s*[\"']?(?<currentDigest>[a-f0-9]+?)[\"']?\\s",
"# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?\\s+[^:]+\\s*:\\s*[\"']?(?<currentValue>[^@]+?)(@(?<currentDigest>sha256:[0-9a-f]+))?[\"']?\\s"
"# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?\\s+[^:]+\\s*:\\s*[\"']?(?:[a-zA-Z0-9._\/-]+:)?(?<currentValue>[^@]+?)(@(?<currentDigest>sha256:[0-9a-f]+))?[\"']?\\s"
]
},
{
Expand Down
6 changes: 5 additions & 1 deletion test/check-extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ spec:
containers:
- name: data-test
env:
# Clear the image-baked PGSSLROOTCERT=system so libpq doesn't
# try to verify the CNPG self-signed CA against the OS trust store.
- name: PGSSLROOTCERT
- name: EXT_SQL_NAME
value: ($values.sql_name)
- name: EXT_VERSION
Expand All @@ -20,7 +23,8 @@ spec:
secretKeyRef:
name: (join('-', [$values.name, 'app']))
key: uri
image: alpine/psql:latest
# renovate: datasource=docker depName=alpine/psql versioning=docker
image: alpine/psql:18.4@sha256:51ef105226058360688250fedeac342f020b21d8d3e59dcf9c1fee04f638831c
command: ['sh', '-c']
args:
- |
Expand Down