From 04146d37a861398fd1a4158b4ae67867cbd62f2d Mon Sep 17 00:00:00 2001 From: Michiel de Mare Date: Mon, 23 Sep 2024 11:04:13 +0200 Subject: [PATCH 1/2] Fixed e2e tests --- .github/workflows/e2e.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 06805dd7..ff693d0e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -27,6 +27,8 @@ jobs: - name: Run tests env: + API_HOST: ${{ secrets.API_HOST }} + API_PORT: ${{ secrets.API_PORT }} CLIENTS_INFO_PATH: ${{ secrets.CLIENTS_INFO_PATH }} CLIENT_ID: ${{ secrets.CLIENT_ID }} CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} @@ -52,4 +54,7 @@ jobs: TOKEN_ENDPOINT: ${{ secrets.TOKEN_ENDPOINT }} TRUSTSTORE: truststore.jks TRUSTSTORE_PASSWORD: ${{ secrets.TRUSTSTORE_PASSWORD }} + WORKER_API_HOST: ${{ secrets.WORKER_API_HOST }} + WORKER_API_PORT: ${{ secrets.WORKER_API_PORT }} + run: lein test :e2e From 6b041a5030a2a1bbe16124c97c903b915dffa542 Mon Sep 17 00:00:00 2001 From: Michiel de Mare Date: Fri, 20 Sep 2024 14:13:00 +0200 Subject: [PATCH 2/2] Upgraded deps --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 73ddf866..c97aa551 100644 --- a/project.clj +++ b/project.clj @@ -42,7 +42,7 @@ ;; force newest version [cheshire "5.13.0"] - [commons-io "2.16.1"] + [commons-io "2.17.0"] [commons-codec "1.17.1"]] :java-source-paths ["src"]