Skip to content

Commit 42e9020

Browse files
authored
Update sbt-typelevel, ... to 0.7.2 (#379)
* Update sbt-typelevel, ... to 0.7.2 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate
1 parent 1916a75 commit 42e9020

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.github/workflows/ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
runs-on: ${{ matrix.os }}
4040
timeout-minutes: 60
4141
steps:
42+
- name: Install sbt
43+
if: contains(runner.os, 'macos')
44+
run: brew install sbt
45+
4246
- name: Checkout current branch (full)
4347
uses: actions/checkout@v4
4448
with:
@@ -109,6 +113,10 @@ jobs:
109113
java: [temurin@8]
110114
runs-on: ${{ matrix.os }}
111115
steps:
116+
- name: Install sbt
117+
if: contains(runner.os, 'macos')
118+
run: brew install sbt
119+
112120
- name: Checkout current branch (full)
113121
uses: actions/checkout@v4
114122
with:
@@ -188,6 +196,10 @@ jobs:
188196
java: [temurin@8]
189197
runs-on: ${{ matrix.os }}
190198
steps:
199+
- name: Install sbt
200+
if: contains(runner.os, 'macos')
201+
run: brew install sbt
202+
191203
- name: Checkout current branch (full)
192204
uses: actions/checkout@v4
193205
with:
@@ -229,6 +241,10 @@ jobs:
229241
java: [temurin@17]
230242
runs-on: ${{ matrix.os }}
231243
steps:
244+
- name: Install sbt
245+
if: contains(runner.os, 'macos')
246+
run: brew install sbt
247+
232248
- name: Checkout current branch (full)
233249
uses: actions/checkout@v4
234250
with:

project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
33
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
44
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
55
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
6-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
7-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
8-
addSbtPlugin("org.typelevel" % "sbt-typelevel-github-actions" % "0.7.1")
6+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.2")
7+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.2")
8+
addSbtPlugin("org.typelevel" % "sbt-typelevel-github-actions" % "0.7.2")
99
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
1010
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4")
1111
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

0 commit comments

Comments
 (0)