diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 6e284a7..4a71a67 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 services: postgres: - image: postgres + image: postgres:14 env: # Must be set to any custom value except the default 'postgres'. If default value is used - for some reason # we would not be able to connect to new dynamically created databases in runtime. diff --git a/docker-compose.yml b/docker-compose.yml index d3335a6..66b7e9c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,10 +1,10 @@ # docker-compose for local debugging -version: '3.1' +version: '3.8' services: db: - image: postgres + image: postgres:14.0 restart: always ports: - 5432:5432