From a5a239562282597eec1c438699d4ee58f1e6bfd9 Mon Sep 17 00:00:00 2001 From: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Date: Wed, 6 Mar 2024 14:41:53 +0100 Subject: [PATCH] chore: Revert #6548 (#6598) Until a more elegant solution for allowing contributor forks to run workflows, we need to revert to using a plain text pg password --- .github/workflows/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index eb62e810e5..453983e0c5 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: ${{ secrets.POSTGRES_PASS }} + DB_PASSWORD: postgres DB_USERNAME: postgres integration-tests-api: @@ -184,7 +184,7 @@ jobs: - name: Run integration tests run: yarn test:integration:api env: - DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} + DB_PASSWORD: postgres DB_USERNAME: postgres integration-tests-plugins: @@ -237,7 +237,7 @@ jobs: run: yarn test:integration:plugins env: DB_USERNAME: postgres - DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} + DB_PASSWORD: postgres NODE_OPTIONS: "--max_old_space_size=4096" integration-tests-modules: @@ -290,7 +290,7 @@ jobs: run: yarn test:integration:modules env: DB_USERNAME: postgres - DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} + DB_PASSWORD: postgres NODE_OPTIONS: "--max_old_space_size=4096" integration-tests-repositories: @@ -340,4 +340,4 @@ jobs: run: yarn test:integration:repositories env: DB_USERNAME: postgres - DB_PASSWORD: ${{ secrets.POSTGRES_PASS }} + DB_PASSWORD: postgres