Skip to content

Commit

Permalink
Merge pull request #12133 from playframework/mergify/bp/main/pr-12131
Browse files Browse the repository at this point in the history
Patch updates (backport #12131) by @scala-steward
  • Loading branch information
mkurz committed Oct 25, 2023
2 parents 5cb50e1 + d68a33e commit 78cf4f1
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
cmd: |
if [ "$CACHE_HIT_COURSIER" = "false" ]; then
sbt +update # Runs with adoptium:8 (default)
# sbt --sbt-version 1.9.6 +update # If we run scripted tests with multiple sbt versions, we could init that sbt installs here
# sbt --sbt-version 1.9.7 +update # If we run scripted tests with multiple sbt versions, we could init that sbt installs here
sbt +mimaPreviousClassfiles # Fetches previous artifacts
cd documentation && sbt +update && cd .. # Fetches dependencies of the documentation project
sbt -java-home `cs java-home --jvm adoptium:11` exit # Init sbt with new JVM that will be downloaded
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
scala: 2.13.x, 3.x
add-dimensions: >-
{
"sbt": [ "1.9.6" ],
"sbt": [ "1.9.7" ],
"sbt_steps": [ "*1of3", "*2of3", "*3of3" ]
}
exclude: >-
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Keep this in sync with documentation/.scalafmt.conf

# Version https://scalameta.org/scalafmt/docs/configuration.html#version
version = 3.7.14
version = 3.7.15
# Dialect https://scalameta.org/scalafmt/docs/configuration.html#scala-dialects
runner.dialect = scala213

Expand Down
2 changes: 1 addition & 1 deletion documentation/.scalafmt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# TODO remove when making documentation a subproject

# Version https://scalameta.org/scalafmt/docs/configuration.html#version
version = 3.7.14
version = 3.7.15
# Dialect https://scalameta.org/scalafmt/docs/configuration.html#scala-dialects
runner.dialect = scala213

Expand Down
2 changes: 1 addition & 1 deletion documentation/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ lazy val main = Project("Play-Documentation", file("."))
), // TODO: Delete this eventually, just needed for lag between deploying to sonatype and getting on maven central
version := PlayVersion.current,
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.2" % Test,
"com.typesafe" % "config" % "1.4.3" % Test,
"com.h2database" % "h2" % "2.2.224" % Test,
"org.mockito" % "mockito-core" % "5.6.0" % Test,
// https://github.com/logstash/logstash-logback-encoder/tree/logstash-logback-encoder-4.9#including
Expand Down
2 changes: 1 addition & 1 deletion documentation/project/build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

# sync with project/build.properties
sbt.version=1.9.6
sbt.version=1.9.7
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ object Dependencies {
Seq(playFileWatch, logback % Test) ++ specs2Deps.map(_ % Test)
}

val typesafeConfig = "com.typesafe" % "config" % "1.4.2"
val typesafeConfig = "com.typesafe" % "config" % "1.4.3"

def sbtDependencies(sbtVersion: String, scalaVersion: String) = {
def sbtDep(moduleId: ModuleID) = sbtPluginDep(moduleId, sbtVersion, scalaVersion)
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ object ScalaVersions {
}

object SbtVersions {
val sbt19 = "1.9.6"
val sbt19 = "1.9.7"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

# sync with documentation/project/build.properties
sbt.version=1.9.6
sbt.version=1.9.7

0 comments on commit 78cf4f1

Please sign in to comment.