Skip to content

Commit 3d0ec91

Browse files
authored
Merge pull request #803 from http4s/update/series/0.23/sbt-http4s-org-0.14.12
Update sbt-http4s-org to 0.14.12 in series/0.23
2 parents 893827a + 89d4f40 commit 3d0ec91

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff 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

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
22
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
33
addSbtPlugin("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")

0 commit comments

Comments
 (0)