From 8a3f7a0ec924b4bec934662f9aa857f11bdece7f Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Thu, 4 Jun 2026 15:32:55 +0700 Subject: [PATCH] Update PostgreSQL connection string and password --- .github/workflows/build-and-dockerize.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-dockerize.yml b/.github/workflows/build-and-dockerize.yml index 1c4c1ee5..abddf5e5 100644 --- a/.github/workflows/build-and-dockerize.yml +++ b/.github/workflows/build-and-dockerize.yml @@ -5,7 +5,7 @@ on: pull_request: branches: [ main ] env: - ConnectionStrings__BoilerplateConnectionString: "Host=localhost;Database=testdb;Username=postgres;Password=postgres" + ConnectionStrings__BoilerplateConnectionString: "Host=localhost;Database=testdb;Username=postgres;Password=devpass4444" jobs: build: # Service containers to run with `container-job` @@ -18,7 +18,7 @@ jobs: - 5432:5432 # Provide the password for postgres env: - POSTGRES_PASSWORD: postgres + POSTGRES_PASSWORD: devpass4444 POSTGRES_DB: testdb # Set health checks to wait until postgres has started options: >-