Skip to content

Commit 66f5b6c

Browse files
authored
Merge pull request #452 from http4s/scala-2.13.18
2 parents 9d8eea8 + 2bf5623 commit 66f5b6c

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127

128128
- name: Upload target directories
129129
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
130-
uses: actions/upload-artifact@v4
130+
uses: actions/upload-artifact@v5
131131
with:
132132
name: target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }}
133133
path: targets.tar
@@ -190,7 +190,7 @@ jobs:
190190
run: sbt +update
191191

192192
- name: Download target directories (2.12, rootJVM)
193-
uses: actions/download-artifact@v4
193+
uses: actions/download-artifact@v6
194194
with:
195195
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJVM
196196

@@ -200,7 +200,7 @@ jobs:
200200
rm targets.tar
201201
202202
- name: Download target directories (2.13, rootJVM)
203-
uses: actions/download-artifact@v4
203+
uses: actions/download-artifact@v6
204204
with:
205205
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM
206206

@@ -210,7 +210,7 @@ jobs:
210210
rm targets.tar
211211
212212
- name: Download target directories (3, rootJVM)
213-
uses: actions/download-artifact@v4
213+
uses: actions/download-artifact@v6
214214
with:
215215
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJVM
216216

build.sbt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ThisBuild / developers := List(
1010
// publish website from this branch
1111
ThisBuild / tlSitePublishBranch := Some("main")
1212

13-
val Scala213 = "2.13.16"
13+
val Scala213 = "2.13.18"
1414
ThisBuild / crossScalaVersions := Seq("2.12.20", Scala213, "3.3.7")
1515
ThisBuild / scalaVersion := Scala213 // the default Scala
1616

@@ -58,8 +58,6 @@ lazy val servletTesting = project
5858
.settings(
5959
name := "http4s-servlet-testing",
6060
description := "Portable servlet implementation for http4s servers",
61-
// Jetty 12+ for testing, requires Java 17 or higher.
62-
githubWorkflowJavaVersions --= Seq(JavaSpec.temurin("8"), JavaSpec.temurin("11")),
6361
Test / fork := true,
6462
libraryDependencies ++= Seq(
6563
"org.eclipse.jetty" % "jetty-client" % jettyVersion % Test,
@@ -78,8 +76,6 @@ lazy val examples = project
7876
.settings(
7977
name := "http4s-servlet-examples",
8078
description := "Examples for http4s-servlet",
81-
// Jetty 12+ for testing, requires Java 17 or higher.
82-
githubWorkflowJavaVersions --= Seq(JavaSpec.temurin("8"), JavaSpec.temurin("11")),
8379
startYear := Some(2013),
8480
fork := true,
8581
Jetty / containerLibs := List("org.eclipse.jetty.ee8" % "jetty-ee8-runner" % jettyVersion),

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "4.2.5")
2-
addSbtPlugin("org.http4s" % "sbt-http4s-org" % "2.0.2")
2+
addSbtPlugin("org.http4s" % "sbt-http4s-org" % "2.0.3")

0 commit comments

Comments
 (0)