diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81c9e83..71c4222 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,11 +83,6 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 - - name: Install sbt - if: matrix.os == 'macos-latest' - shell: bash - run: brew install sbt - - name: Check that workflows are up to date shell: bash run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck diff --git a/build.sbt b/build.sbt index 551109b..3623a19 100644 --- a/build.sbt +++ b/build.sbt @@ -85,14 +85,3 @@ ThisBuild / githubWorkflowJavaVersions := Seq( ) ThisBuild / githubWorkflowBuildMatrixExclusions += MatrixExclude(Map("java" -> "temurin@8", "os" -> "macos-latest")) - -// GitHub Actions macOS 13+ runner images do not come with sbt preinstalled anymore -ThisBuild / githubWorkflowBuildPreamble ++= Seq( - WorkflowStep.Run( - commands = List( - "brew install sbt" - ), - cond = Some("matrix.os == 'macos-latest'"), - name = Some("Install sbt") - ) -)