File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 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 :
@@ -244,6 +252,10 @@ jobs:
244252 java : [temurin@8]
245253 runs-on : ${{ matrix.os }}
246254 steps :
255+ - name : Install sbt
256+ if : contains(runner.os, 'macos')
257+ run : brew install sbt
258+
247259 - name : Checkout current branch (full)
248260 uses : actions/checkout@v4
249261 with :
@@ -276,6 +288,10 @@ jobs:
276288 java : [temurin@11]
277289 runs-on : ${{ matrix.os }}
278290 steps :
291+ - name : Install sbt
292+ if : contains(runner.os, 'macos')
293+ run : brew install sbt
294+
279295 - name : Checkout current branch (full)
280296 uses : actions/checkout@v4
281297 with :
Original file line number Diff line number Diff line change 1- addSbtPlugin(" org.typelevel" % " sbt-typelevel" % " 0.7.1 " )
2- addSbtPlugin(" org.typelevel" % " sbt-typelevel-site" % " 0.7.1 " )
1+ addSbtPlugin(" org.typelevel" % " sbt-typelevel" % " 0.7.2 " )
2+ addSbtPlugin(" org.typelevel" % " sbt-typelevel-site" % " 0.7.2 " )
33addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.16.0" )
44addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.4.17" )
55addSbtPlugin(" org.portable-scala" % " sbt-scala-native-crossproject" % " 1.3.2" )
You can’t perform that action at this time.
0 commit comments