Commit 42e9020 1 parent 1916a75 commit 42e9020 Copy full SHA for 42e9020
File tree 2 files changed +19
-3
lines changed
2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 39
39
runs-on : ${{ matrix.os }}
40
40
timeout-minutes : 60
41
41
steps :
42
+ - name : Install sbt
43
+ if : contains(runner.os, 'macos')
44
+ run : brew install sbt
45
+
42
46
- name : Checkout current branch (full)
43
47
uses : actions/checkout@v4
44
48
with :
@@ -109,6 +113,10 @@ jobs:
109
113
java : [temurin@8]
110
114
runs-on : ${{ matrix.os }}
111
115
steps :
116
+ - name : Install sbt
117
+ if : contains(runner.os, 'macos')
118
+ run : brew install sbt
119
+
112
120
- name : Checkout current branch (full)
113
121
uses : actions/checkout@v4
114
122
with :
@@ -188,6 +196,10 @@ jobs:
188
196
java : [temurin@8]
189
197
runs-on : ${{ matrix.os }}
190
198
steps :
199
+ - name : Install sbt
200
+ if : contains(runner.os, 'macos')
201
+ run : brew install sbt
202
+
191
203
- name : Checkout current branch (full)
192
204
uses : actions/checkout@v4
193
205
with :
@@ -229,6 +241,10 @@ jobs:
229
241
java : [temurin@17]
230
242
runs-on : ${{ matrix.os }}
231
243
steps :
244
+ - name : Install sbt
245
+ if : contains(runner.os, 'macos')
246
+ run : brew install sbt
247
+
232
248
- name : Checkout current branch (full)
233
249
uses : actions/checkout@v4
234
250
with :
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
3
3
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.5.2" )
4
4
addSbtPlugin(" ch.epfl.scala" % " sbt-scalafix" % " 0.12.1" )
5
5
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 " )
9
9
addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.16.0" )
10
10
addSbtPlugin(" org.scalameta" % " sbt-mdoc" % " 2.5.4" )
11
11
addSbtPlugin(" org.portable-scala" % " sbt-scala-native-crossproject" % " 1.3.2" )
You can’t perform that action at this time.
0 commit comments