diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8b7eb2..a04ec73 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: @@ -94,6 +98,10 @@ jobs: java: [temurin@17] 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: @@ -155,6 +163,10 @@ jobs: java: [temurin@17] 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 1a933d3..46efbdc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1") -addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.7.1") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.2") +addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.7.2") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")