diff --git a/.github/workflows/coverage-report.yml b/.github/workflows/coverage-report.yml index 8951ab6c..20fa9b10 100644 --- a/.github/workflows/coverage-report.yml +++ b/.github/workflows/coverage-report.yml @@ -15,6 +15,7 @@ jobs: distribution: 'temurin' java-version: 8 cache: 'sbt' + - uses: sbt/setup-sbt@v1 - name: Compile run: sbt compile - name: Run cross-version tests with coverage diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10fea555..9ed00a60 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,7 @@ jobs: distribution: 'temurin' java-version: 8 cache: 'sbt' + - uses: sbt/setup-sbt@v1 - name: Publish artifacts run: sbt ci-release || sbt sonatypeReleaseAll env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2c9c513a..5e480c65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ jobs: distribution: 'temurin' java-version: 8 cache: 'sbt' + - uses: sbt/setup-sbt@v1 - name: Check formatting run: sbt scalafmtCheckAll - name: Compile