File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 34
34
runs-on : ${{ matrix.os }}
35
35
timeout-minutes : 60
36
36
steps :
37
+ - name : Install sbt
38
+ if : contains(runner.os, 'macos')
39
+ run : brew install sbt
40
+
37
41
- name : Checkout current branch (full)
38
42
uses : actions/checkout@v4
39
43
with :
@@ -103,6 +107,10 @@ jobs:
103
107
java : [temurin@8]
104
108
runs-on : ${{ matrix.os }}
105
109
steps :
110
+ - name : Install sbt
111
+ if : contains(runner.os, 'macos')
112
+ run : brew install sbt
113
+
106
114
- name : Checkout current branch (full)
107
115
uses : actions/checkout@v4
108
116
with :
@@ -244,6 +252,10 @@ jobs:
244
252
java : [temurin@8]
245
253
runs-on : ${{ matrix.os }}
246
254
steps :
255
+ - name : Install sbt
256
+ if : contains(runner.os, 'macos')
257
+ run : brew install sbt
258
+
247
259
- name : Checkout current branch (full)
248
260
uses : actions/checkout@v4
249
261
with :
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" org.typelevel" % " sbt-typelevel" % " 0.7.1 " )
1
+ addSbtPlugin(" org.typelevel" % " sbt-typelevel" % " 0.7.2 " )
2
2
addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.16.0" )
3
3
addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.4.17" )
4
4
addSbtPlugin(" org.portable-scala" % " sbt-scala-native-crossproject" % " 1.3.2" )
You can’t perform that action at this time.
0 commit comments