Skip to content

Commit

Permalink
chore: Patch dependency updates (#3373)
Browse files Browse the repository at this point in the history
  • Loading branch information
daschbot authored Oct 1, 2024
1 parent 88b278e commit 1d1c395
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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.3/coverage-report/cobertura.xml
coverage-reports: ./target/scala-3.3.4/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.3/coverage-report/cobertura.xml
files: ./target/scala-3.3.4/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.3/coverage-report/cobertura.xml
coverage-reports: ./target/scala-3.3.4/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.3/coverage-report/cobertura.xml
files: ./target/scala-3.3.4/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
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object Dependencies {
// base image the knora-sipi image is created from
val sipiImage = "daschswiss/sipi:v3.13.0"

val ScalaVersion = "3.3.3"
val ScalaVersion = "3.3.4"

val PekkoActorVersion = "1.1.1"
val PekkoHttpVersion = "1.0.1"
Expand Down Expand Up @@ -113,13 +113,13 @@ object Dependencies {
val pekkoTestkit = "org.apache.pekko" %% "pekko-testkit" % PekkoActorVersion
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"

val testcontainers = "org.testcontainers" % "testcontainers" % "1.20.1"
val testcontainers = "org.testcontainers" % "testcontainers" % "1.20.2"
val wiremock = "org.wiremock" % "wiremock" % "3.9.1"

// found/added by the plugin but deleted anyway
val commonsLang3 = "org.apache.commons" % "commons-lang3" % "3.17.0"

val tapirVersion = "1.11.3"
val tapirVersion = "1.11.5"

val tapir = Seq(
"com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.1.2")
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.7")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")
addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.1.8")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
Expand Down

0 comments on commit 1d1c395

Please sign in to comment.