File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -197,3 +197,37 @@ jobs:
197197
198198 - name : Publish
199199 run : sbt '++ ${{ matrix.scala }}' tlCiRelease
200+
201+ validate-steward :
202+ name : Validate Steward Config
203+ strategy :
204+ matrix :
205+ os : [ubuntu-latest]
206+ scala : [2.13.6]
207+ java : [temurin@11]
208+ runs-on : ${{ matrix.os }}
209+ steps :
210+ - name : Checkout current branch (fast)
211+ uses : actions/checkout@v3
212+
213+ - name : Download Java (temurin@17)
214+ id : download-java-temurin-17
215+ if : matrix.java == 'temurin@17'
216+ uses : typelevel/download-java@v2
217+ with :
218+ distribution : temurin
219+ java-version : 17
220+
221+ - name : Setup Java (temurin@17)
222+ if : matrix.java == 'temurin@17'
223+ uses : actions/setup-java@v3
224+ with :
225+ distribution : jdkfile
226+ java-version : 17
227+ jdkFile : ${{ steps.download-java-temurin-17.outputs.jdkFile }}
228+
229+ - uses : coursier/setup-action@v1
230+ with :
231+ apps : scala-steward
232+
233+ - run : scala-steward validate-repo-config .scala-steward.conf
Original file line number Diff line number Diff line change 11addSbtPlugin(" com.eed3si9n" % " sbt-buildinfo" % " 0.11.0" )
22addSbtPlugin(" com.lightbend.sbt" % " sbt-java-formatter" % " 0.8.0" )
33addSbtPlugin(" io.spray" % " sbt-revolver" % " 0.10.0" )
4- addSbtPlugin(" org.http4s" %% " sbt-http4s-org" % " 0.14.11 " )
4+ addSbtPlugin(" org.http4s" %% " sbt-http4s-org" % " 0.14.12 " )
You can’t perform that action at this time.
0 commit comments