Skip to content

Commit

Permalink
chore: Patch dependency updates (#3488)
Browse files Browse the repository at this point in the history
  • Loading branch information
daschbot authored Feb 3, 2025
1 parent 8df9737 commit d54cad2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./target/scala-3.3.4/coverage-report/cobertura.xml
coverage-reports: ./target/scala-3.3.5/coverage-report/cobertura.xml
- name: Upload coverage data to codecov
if: ${{ env.IS_NOOP == 'false' }}
uses: codecov/codecov-action@v3
with:
files: ./target/scala-3.3.4/coverage-report/cobertura.xml
files: ./target/scala-3.3.5/coverage-report/cobertura.xml
- name: No-op step
if: ${{ env.IS_NOOP == 'true' }}
run: echo "No checks on main or release branches, skipping this job."
Expand Down Expand Up @@ -79,12 +79,12 @@ jobs:
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./target/scala-3.3.4/coverage-report/cobertura.xml
coverage-reports: ./target/scala-3.3.5/coverage-report/cobertura.xml
- name: Upload coverage data to codecov
if: ${{ env.IS_NOOP == 'false' }}
uses: codecov/codecov-action@v3
with:
files: ./target/scala-3.3.4/coverage-report/cobertura.xml
files: ./target/scala-3.3.5/coverage-report/cobertura.xml
- name: No-op step
if: ${{ env.IS_NOOP == 'true' }}
run: echo "No checks on main or release branches, skipping this job."
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.4"
version = "3.8.6"
runner.dialect = scala3
maxColumn = 120
align.preset = most
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ object Dependencies {
// base image the knora-sipi image is created from
val sipiImage = "daschswiss/sipi:v3.15.0"

val ScalaVersion = "3.3.4"
val ScalaVersion = "3.3.5"

val PekkoActorVersion = "1.1.3"
val PekkoHttpVersion = "1.1.0"

val MonocleVersion = "3.3.0"

val Rdf4jVersion = "5.1.0"
val Rdf4jVersion = "5.1.1"
val TopbraidShaclVersion = "1.4.4"
val JenaVersion = "5.2.0" // should be aligned with the version topbraid-shacl uses

Expand Down Expand Up @@ -127,7 +127,7 @@ object Dependencies {
// found/added by the plugin but deleted anyway
val commonsLang3 = "org.apache.commons" % "commons-lang3" % "3.17.0"

val tapirVersion = "1.11.12"
val tapirVersion = "1.11.13"

val tapir = Seq(
"com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion,
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ resolvers ++= Seq(
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.0")
addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.1.2")
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.7")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")
addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.1.8")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.3")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.0")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")

0 comments on commit d54cad2

Please sign in to comment.