0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2024-12-20 01:18:18 +00:00

remove: deprecated postgreSQL version 11

This commit is contained in:
Tonye Jack 2024-05-11 18:15:01 -06:00 committed by GitHub
parent d7fe33a478
commit 35247d94d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,8 +13,8 @@ if ! [[ "$INPUT_POSTGRESQL_VERSION" =~ ^[0-9]+$ ]]; then
fi fi
# Check if the input is between 11 and 16 (inclusive) # Check if the input is between 11 and 16 (inclusive)
if (( INPUT_POSTGRESQL_VERSION < 11 || INPUT_POSTGRESQL_VERSION > 16 )); then if (( INPUT_POSTGRESQL_VERSION < 12 || INPUT_POSTGRESQL_VERSION > 16 )); then
echo "Error: $INPUT_POSTGRESQL_VERSION is not between 11 and 16 (inclusive)." echo "Error: $INPUT_POSTGRESQL_VERSION is not between 12 and 16 (inclusive)."
exit 1 exit 1
fi fi