From 24a1ac5c44bb649b1e39aabcc4cf1439b159843f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:26:37 +0200 Subject: [PATCH] Update sbt-typelevel, sbt-typelevel-site to 0.7.2 in series/3.x (#1339) * Update sbt-typelevel, sbt-typelevel-site to 0.7.2 in series/3.x * Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --- .github/workflows/ci.yml | 12 ++++++++++++ project/plugins.sbt | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32a74ec4a..0743c46b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,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: @@ -87,6 +91,10 @@ jobs: java: [temurin@21] 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: @@ -152,6 +160,10 @@ jobs: java: [temurin@21] 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 4e5c976d3..658a7d9e2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val sbtTypelevelVersion = "0.7.1" +val sbtTypelevelVersion = "0.7.2" addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion) addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion) addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")