From 6cfe7baef576be84d7042126e0d7bdc777cbbb26 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 6 May 2023 14:10:51 +0300 Subject: CI: change PostgreSQL port --- .github/workflows/ci.yml | 2 +- src/test/resources/application-postgres.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f88d7d25..93146645 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: postgres: image: postgres ports: - - 5433:5432 + - 5434:5432 env: POSTGRES_DB: juick POSTGRES_USER: juick diff --git a/src/test/resources/application-postgres.yml b/src/test/resources/application-postgres.yml index 9646bca9..dbdfbb04 100644 --- a/src/test/resources/application-postgres.yml +++ b/src/test/resources/application-postgres.yml @@ -1,6 +1,6 @@ spring: datasource: - url: jdbc:postgresql://localhost:5433/juick + url: jdbc:postgresql://localhost:5434/juick username: juick password: secret flyway: -- cgit v1.2.3