From 6a943e275a863fa430591a31949ec38cbb69fee4 Mon Sep 17 00:00:00 2001 From: Akhil Mohan Date: Thu, 8 Feb 2024 22:05:35 +0530 Subject: [PATCH] Updated open-api diff gh action host docker ip --- .github/workflows/check-api-for-breaking-changes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-api-for-breaking-changes.yml b/.github/workflows/check-api-for-breaking-changes.yml index 0c5405b73..8bead10ce 100644 --- a/.github/workflows/check-api-for-breaking-changes.yml +++ b/.github/workflows/check-api-for-breaking-changes.yml @@ -32,8 +32,8 @@ jobs: - name: Start the server run: docker run --name infisical-api -p 4000:4000 -e DB_CONNECTION_URI=$DB_CONNECTION_URI -e REDIS_URL=$REDIS_URL -e JWT_AUTH_SECRET=$JWT_AUTH_SECRET --entrypoint '/bin/sh' infisical-api -c "npm run migration:latest && ls && node dist/main.mjs" env: - REDIS_URL: redis://host.docker.internal:6379 - DB_CONNECTION_URI: postgres://infisical:infisical@host.docker.internal:5432/infisical?sslmode=disable + REDIS_URL: redis://172.17.0.1:6379 + DB_CONNECTION_URI: postgres://infisical:infisical@172.17.0.1:5432/infisical?sslmode=disable JWT_AUTH_SECRET: something-random - name: Install openapi api diff run: npm install -g openapi-diff