From 55275f0eba88e054dcacbc2b93e4556a8e25b4d0 Mon Sep 17 00:00:00 2001 From: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Date: Thu, 29 Feb 2024 22:10:56 +0100 Subject: [PATCH] chore(actions): Use PG pass secret (#6548) --- .github/workflows/action.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 46a6b9396f..eb62e810e5 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -123,7 +123,7 @@ jobs: - name: Run integration tests run: yarn test:integration:packages env: - DB_PASSWORD: postgres + DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} DB_USERNAME: postgres integration-tests-api: @@ -184,10 +184,9 @@ jobs: - name: Run integration tests run: yarn test:integration:api env: - DB_PASSWORD: postgres + DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} DB_USERNAME: postgres - integration-tests-plugins: needs: setup runs-on: ubuntu-latest @@ -238,7 +237,7 @@ jobs: run: yarn test:integration:plugins env: DB_USERNAME: postgres - DB_PASSWORD: postgres + DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} NODE_OPTIONS: "--max_old_space_size=4096" integration-tests-modules: @@ -291,7 +290,7 @@ jobs: run: yarn test:integration:modules env: DB_USERNAME: postgres - DB_PASSWORD: postgres + DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} NODE_OPTIONS: "--max_old_space_size=4096" integration-tests-repositories: @@ -341,4 +340,4 @@ jobs: run: yarn test:integration:repositories env: DB_USERNAME: postgres - DB_PASSWORD: postgres + DB_PASSWORD: ${{ secrets.POSTGRES_PASS }}