Skip to content

Commit 14a8dee

Browse files
committed
bump
1 parent 94899c8 commit 14a8dee

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [3.3.3]
26+
scala: [3.3.4]
2727
java: [zulu@8, temurin@17]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
matrix:
7575
os: [ubuntu-latest]
76-
scala: [3.3.3]
76+
scala: [3.3.4]
7777
java: [zulu@8]
7878
runs-on: ${{ matrix.os }}
7979
steps:
@@ -101,12 +101,12 @@ jobs:
101101
- name: Setup sbt
102102
uses: sbt/setup-sbt@v1
103103

104-
- name: Download target directories (3.3.3)
104+
- name: Download target directories (3.3.4)
105105
uses: actions/download-artifact@v4
106106
with:
107-
name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }}
107+
name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }}
108108

109-
- name: Inflate target directories (3.3.3)
109+
- name: Inflate target directories (3.3.4)
110110
run: |
111111
tar xf targets.tar
112112
rm targets.tar

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ lazy val scalacSettings =
5959
"-feature" ::
6060
Nil
6161

62-
val zioVersion = "2.1.13"
62+
val zioVersion = "2.1.14"
6363
val laminarVersion = "17.2.0"
6464

6565
lazy val commonSettings = Seq(
@@ -112,7 +112,7 @@ lazy val example = project
112112
skip / publish := true,
113113
libraryDependencies ++= Seq(
114114
"dev.zio" %%% "zio" % zioVersion,
115-
"dev.zio" %%% "zio-json" % "0.7.3"
115+
"dev.zio" %%% "zio-json" % "0.7.4"
116116
)
117117
)
118118
.enablePlugins(ScalaJSPlugin)

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
3+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1")
44
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
5-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0")
5+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")
66
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")

0 commit comments

Comments
 (0)