Compare commits

..

1 Commits

Author SHA1 Message Date
d8dfeab0a1 Update docker.io/postgres Docker tag to v18
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
lint-test-docker / lint-docker-compose (pull_request) Failing after 47s
2025-12-11 04:44:40 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ jobs:
echo "$GIT_DIFF"
for path in $GIT_DIFF; do
if echo "$path" | grep -q -E "hosts/[^/]+/[^/]+"; then
if [[ echo "$path" | grep -q -E "hosts/[^/]+/[^/]+" ]]; then
echo ""
echo ">> Adding path: $path"
CHANGED_COMPOSE+=$(echo "$path")

View File

@@ -80,7 +80,7 @@ jobs:
echo "$GIT_DIFF"
for path in $GIT_DIFF; do
if echo "$path" | grep -q -E "clusters/[^/]+/helm/[^/]+"; then
if [ echo "$path" | grep -q -E "clusters/[^/]+/helm/[^/]+" ]; then
echo ""
echo ">> Adding path: $path"
CHANGED_CHARTS+=$(echo "$path" | awk -F '/' '{print $4}')