1
0
mirror of https://github.com/garraflavatra/docker-volume-s3-backup.git synced 2025-06-27 21:35:10 +00:00

Add support for PostgreSQL 16, drop 11 (#39)

* Add support for PostgreSQL 16

This requires Alpine 3.19

* Drop support for PostgreSQL 11

Version 11 has reached end-of-life (EOL)
https://www.postgresql.org/support/versioning/

* Install aws-cli via apk instead of pip3

This removes python3 and py3-pip as explicit dependencies.
Python is still installed as a derived dependency.

This fixes building on Alpine 3.19
This commit is contained in:
Georg Ledermann
2023-12-21 22:47:10 +01:00
committed by GitHub
parent aca41c2af4
commit bb9f3af1e0
3 changed files with 5 additions and 7 deletions

View File

@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
include:
- { postgres: 11, alpine: '3.10' }
- { postgres: 12, alpine: '3.12' }
- { postgres: 13, alpine: '3.14' }
- { postgres: 14, alpine: '3.16' }
- { postgres: 15, alpine: '3.17' }
- { postgres: 16, alpine: '3.19' }
steps:
- name: Checkout repository