2 Commits

Author SHA1 Message Date
1732151e2a 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 20s
2025-12-10 06:31:49 +00:00
829424941f fix variable
All checks were successful
renovate / renovate (push) Successful in 1m40s
2025-12-10 00:30:53 -06:00
5 changed files with 5 additions and 5 deletions

View File

@@ -194,7 +194,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

View File

@@ -179,7 +179,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

View File

@@ -199,7 +199,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

View File

@@ -197,7 +197,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

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