Skip to content

Commit e2ee736

Browse files
authored
Merge pull request #157 from typelevel/update/sbt-typelevel-0.7.2
2 parents 384df28 + e96ade7 commit e2ee736

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
2-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
3-
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1")
1+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.2")
2+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.2")
3+
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.2")
44
addSbtPlugin("org.foundweekends.giter8" %% "sbt-giter8" % "0.16.2")
55
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
66
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4")

src/main/g8/.github/workflows/ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
runs-on: ${{ matrix.os }}
3535
timeout-minutes: 60
3636
steps:
37+
- name: Install sbt
38+
if: contains(runner.os, 'macos')
39+
run: brew install sbt
40+
3741
- name: Checkout current branch (full)
3842
uses: actions/checkout@v4
3943
with:
@@ -103,6 +107,10 @@ jobs:
103107
java: [temurin@8]
104108
runs-on: ${{ matrix.os }}
105109
steps:
110+
- name: Install sbt
111+
if: contains(runner.os, 'macos')
112+
run: brew install sbt
113+
106114
- name: Checkout current branch (full)
107115
uses: actions/checkout@v4
108116
with:
@@ -194,6 +202,10 @@ jobs:
194202
java: [temurin@8]
195203
runs-on: ${{ matrix.os }}
196204
steps:
205+
- name: Install sbt
206+
if: contains(runner.os, 'macos')
207+
run: brew install sbt
208+
197209
- name: Checkout current branch (full)
198210
uses: actions/checkout@v4
199211
with:
@@ -226,6 +238,10 @@ jobs:
226238
java: [temurin@11]
227239
runs-on: ${{ matrix.os }}
228240
steps:
241+
- name: Install sbt
242+
if: contains(runner.os, 'macos')
243+
run: brew install sbt
244+
229245
- name: Checkout current branch (full)
230246
uses: actions/checkout@v4
231247
with:

src/main/g8/project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
2-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
3-
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1")
1+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.2")
2+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.2")
3+
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.2")
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
55
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4")

0 commit comments

Comments
 (0)