2 Commits

Author SHA1 Message Date
dd81256375 Update docker.io/postgres Docker tag to v18
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-test-docker / lint-docker-compose (pull_request) Successful in 17s
2025-12-11 04:47:58 +00:00
10ae394465 fix if
All checks were successful
renovate / renovate (push) Successful in 1m15s
2025-12-10 22:46:48 -06:00
3 changed files with 3 additions and 3 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}')

View File

@@ -19,7 +19,7 @@ services:
- /dev/net/tun:/dev/net/tun
postgresql:
image: docker.io/postgres:17.7-alpine3.21
image: docker.io/postgres:18.1-alpine3.21
container_name: gitea-postgres
env_file:
- .env