From d39f0842c97ba407af2b26e9b4a7fc70c5651ee9 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Tue, 17 Dec 2024 08:50:31 +0100 Subject: [PATCH] Fix missing sbt runner (#2113) Since github unses ubuntu-24.04 as ubuntu-latest the sbt runner is missing. This "action" installs the official sbt runner. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df870da48..8e3210fc9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,6 +47,7 @@ jobs: cd src/test/resources/ bash validateJsonTestFiles.sh cd - + - uses: sbt/setup-sbt@v1 - name: Cache SBT uses: actions/cache@v3 with: