From 17729515b52e4760c870a47da94b1b327f94898d Mon Sep 17 00:00:00 2001 From: Divya Bhatt Date: Wed, 16 Oct 2024 16:45:03 +0100 Subject: [PATCH] Fix failing CI due to sbt not found See more at https://github.com/guardian/redirect-resolver/pull/24 Co-authored-by: Emily Bourke --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e62bdcb..24aa730 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,12 +15,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup JDK - uses: actions/setup-java@v4 - with: - distribution: corretto - java-version: 11 - cache: sbt + + - uses: guardian/setup-scala@v1 + - name: Build and Test run: sbt -v ++test aws-parameterstore-lambda/assembly - name: Test Summary