Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -55,7 +55,7 @@ jobs:
- name: Setup Java (temurin@11)
id: setup-java-temurin-11
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -140,7 +140,7 @@ jobs:
- name: Setup Java (temurin@11)
id: setup-java-temurin-11
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
Expand All @@ -153,7 +153,7 @@ jobs:
- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -297,7 +297,7 @@ jobs:
- name: Setup Java (temurin@11)
id: setup-java-temurin-11
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
Expand All @@ -310,7 +310,7 @@ jobs:
- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
Expand All @@ -335,12 +335,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Java (temurin@11)
id: setup-java-temurin-11
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -381,7 +381,7 @@ jobs:
- name: Setup Java (temurin@11)
id: setup-java-temurin-11
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
Expand All @@ -394,7 +394,7 @@ jobs:
- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
Expand Down
14 changes: 6 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ThisBuild / developers := List(

val scala212 = "2.12.20"
val scala213 = "2.13.16"
val scala3 = "3.3.6"
val scala3 = "3.3.7"
val PrimaryJava = JavaSpec.temurin("11")
val LTSJava = JavaSpec.temurin("17")

Expand Down Expand Up @@ -46,8 +46,6 @@ ThisBuild / jsEnv := {
new NodeJSEnv(NodeJSEnv.Config().withArgs(List("--max-old-space-size=10240")))
}

enablePlugins(AutomateHeaderPlugin)

lazy val root =
tlCrossRootProject
.aggregate(
Expand Down Expand Up @@ -145,7 +143,7 @@ lazy val http4s = module("http4s") {
.settings(
description := "http4s based client for kubernetes",
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-client" % "0.23.30"
"org.http4s" %%% "http4s-client" % "0.23.33"
)
)
.dependsOn(client, jawn)
Expand All @@ -158,7 +156,7 @@ lazy val http4sEmber = module("http4s-ember") {
.settings(
description := "http4s ember based client for kubernetes",
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-ember-client" % "0.23.30"
"org.http4s" %%% "http4s-ember-client" % "0.23.33"
)
)
.dependsOn(http4s)
Expand Down Expand Up @@ -375,7 +373,7 @@ lazy val docs = project
.enablePlugins(ScalaK8sWebsite)
.settings(
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-circe" % "0.23.30",
"org.http4s" %%% "http4s-circe" % "0.23.33",
"com.softwaremill.sttp.client3" %%% "circe" % "3.11.0"
)
)
Expand Down Expand Up @@ -413,7 +411,7 @@ lazy val exampleJVM = example("jvm") {
.crossType(CrossType.Pure)
.settings(
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-circe" % "0.23.30",
"org.http4s" %%% "http4s-circe" % "0.23.33",
"com.softwaremill.sttp.client3" %%% "circe" % "3.11.0"
)
)
Expand All @@ -425,7 +423,7 @@ lazy val exampleCrossPlatform = example("cross-platform") {
.crossType(CrossType.Pure)
.settings(
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-circe" % "0.23.30"
"org.http4s" %%% "http4s-circe" % "0.23.33"
)
)
.jsSettings(
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.11.6
sbt.version=1.11.7
7 changes: 3 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.8.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.8.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.8.2")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.8.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.1")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
Loading