diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30371c7ac..b9334bf6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,10 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: @@ -90,6 +94,10 @@ jobs: java: [temurin@8] runs-on: ${{ matrix.os }} steps: + - name: Install sbt + if: contains(runner.os, 'macos') + run: brew install sbt + - name: Checkout current branch (full) uses: actions/checkout@v4 with: diff --git a/project/plugins.sbt b/project/plugins.sbt index b9bf621fc..7f7c87d75 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -18,6 +18,6 @@ addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0") -addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.7.1") +addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.7.2") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")