From 887e7eb11fb73045ccad740ab70cb926a3a1c5d9 Mon Sep 17 00:00:00 2001 From: Roberto Tyley <52038+rtyley@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:44:42 +0100 Subject: [PATCH] Fix for missing sbt by using new guardian/setup-scala action --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d040cc0..6a84c2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,12 +16,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup JDK - uses: rtyley/setup-java@patch-1 - with: - distribution: corretto - java-version: 17 # Currently Java 17 required by `s3mock-testcontainers` - cache: sbt + - uses: guardian/setup-scala@v1 - name: Build and Test run: sbt -v +test - name: Test Summary