diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-05-24 21:23:50 +0200 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-05-27 09:49:25 +0200 |
| commit | b049bec7cfe9b5854584d240addb44fa1e9375a5 (patch) | |
| tree | 802915666be8c9429530add0f621a560b5cca6be /.github | |
| parent | bcbc4b9b8a4a47c8e045b060a9860a5c038192de (diff) | |
Fixed #35479 -- Dropped support for PostgreSQL 13 and PostGIS 3.0.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/schedule_tests.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/selenium.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml index c4523af4a0..8b1f01ad86 100644 --- a/.github/workflows/schedule_tests.yml +++ b/.github/workflows/schedule_tests.yml @@ -90,7 +90,7 @@ jobs: continue-on-error: true services: postgres: - image: postgres:13-alpine + image: postgres:14-alpine env: POSTGRES_DB: django POSTGRES_USER: user @@ -163,7 +163,7 @@ jobs: name: Selenium tests, PostgreSQL services: postgres: - image: postgres:13-alpine + image: postgres:14-alpine env: POSTGRES_DB: django POSTGRES_USER: user diff --git a/.github/workflows/selenium.yml b/.github/workflows/selenium.yml index fa916a0ded..7e46e0cfb1 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -43,7 +43,7 @@ jobs: name: PostgreSQL services: postgres: - image: postgres:13-alpine + image: postgres:14-alpine env: POSTGRES_DB: django POSTGRES_USER: user |
