Skip to content

Commit 12bd830

Browse files
committed
use ubuntu 22.04 since latest does not feature sbt
1 parent a30821d commit 12bd830

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/sbt-docker-prepublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
docker:
99

10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
- uses: actions/checkout@v4

.github/workflows/sbt-docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
docker:
99

10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
- uses: actions/checkout@v4

build.sbt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ val buildSettings = Seq(
103103
// transitive dependencies of legacy de.zalando.beard
104104
"org.antlr" % "antlr4" % "4.8-1",
105105
"io.monix" %% "monix" % "3.4.1", // ### Scala 3
106-
"net.codecrete.qrbill" % "qrbill-generator" % "3.3.0",
106+
"net.codecrete.qrbill" % "qrbill-generator" % "3.3.1",
107107
"io.nayuki" % "qrcodegen" % "1.8.0",
108108
"org.apache.pdfbox" % "pdfbox" % "2.0.34",
109109
"org.apache.pdfbox" % "pdfbox-parent" % "2.0.34" pomOnly(),
@@ -117,12 +117,13 @@ val buildSettings = Seq(
117117
dependencyOverrides ++= Seq(
118118
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.4.0",
119119
"xerces" % "xercesImpl" % "2.12.2",
120-
"org.apache.commons" % "commons-compress" % "1.26.2",
120+
"org.apache.commons" % "commons-compress" % "1.28.0",
121121
"io.netty" % "netty-handler" % "4.1.123.Final",
122122
"org.apache.jena" % "jena-core" % "5.5.0",
123123
"com.google.protobuf" % "protobuf-java" % "4.31.1",
124-
"com.google.guava" % "guava" % "33.4.8-jre"
125-
)
124+
"com.google.guava" % "guava" % "33.4.8-jre",
125+
"commons-beanutils" % "commons-beanutils" % "1.11.0"
126+
)
126127
)
127128

128129
lazy val scalaxbSettings = Seq(

0 commit comments

Comments
 (0)