From f38622ef538b552d34ae9f6688cff144bbfaad89 Mon Sep 17 00:00:00 2001 From: Oleh Yermolaiev Date: Mon, 23 Dec 2024 20:09:16 +0200 Subject: [PATCH] Setup explicit setup-sbt step. Update checkout and java setup step versions (#293) --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b92a72ff..5ede9ffa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,12 +24,17 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: coursier/cache-action@v6 - name: Set up JDK 11 - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: java-version: 11 + distribution: 'corretto' + cache: sbt + - uses: sbt/setup-sbt@v1 + with: + sbt-runner-version: 1.9.9 - name: Start HTTP server to test API enrichment in Common Enrich run: python integration-tests/common/api-enrichment-test.py 8001 & - name: Start HTTP server to test API enrichment in Common Fs2