This is an automated email from the ASF dual-hosted git repository.

engelen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-quickstart-scala.g8.git


The following commit(s) were added to refs/heads/main by this push:
     new 5f36a0d  pekko 1.2.0 (#16)
5f36a0d is described below

commit 5f36a0da1199eba9eb57df6fbad799f3fff859e1
Author: PJ Fanning <[email protected]>
AuthorDate: Mon Sep 8 16:20:15 2025 +0100

    pekko 1.2.0 (#16)
    
    * pekko 1.2.0
    
    * Update build-test.yml
---
 .github/workflows/build-test.yml | 11 +++++++----
 docs/build.sbt                   |  2 +-
 project/build.properties         |  2 +-
 src/main/g8/build.sbt            |  4 ++--
 src/main/g8/default.properties   |  2 +-
 5 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 4356c0e..bdd6854 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -5,22 +5,25 @@ on:
 
 jobs:
   build-test:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-22.04
     steps:
       - name: Checkout
-        uses: actions/checkout@v4
+        uses: actions/checkout@v5
         with:
           # we don't know what commit the last tag was it's safer to get 
entire repo so previousStableVersion resolves
           fetch-depth: 0
 
       - name: Set up JDK 11
-        uses: actions/setup-java@v4
+        uses: actions/setup-java@v5
         with:
           distribution: temurin
           java-version: 11
 
+      - name: Install sbt
+        uses: sbt/setup-sbt@17575ea4e18dd928fe5968dbe32294b97923d65b # v1.1.13
+
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v6
+        uses: coursier/cache-action@4e2615869d13561d626ed48655e1a39e5b192b3c # 
v6.4.7
 
       - name: generate and test
         # This runs the template with the default parameters, and runs test 
within the templated app.
diff --git a/docs/build.sbt b/docs/build.sbt
index bccdba1..626c76b 100644
--- a/docs/build.sbt
+++ b/docs/build.sbt
@@ -1,4 +1,4 @@
-scalaVersion := "2.13.13"
+scalaVersion := "2.13.16"
 
 Compile / paradoxProperties ++= Map(
   "snip.g8root.base_dir" -> "../../../../src/main/g8"
diff --git a/project/build.properties b/project/build.properties
index 73df629..5e6884d 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -1 +1 @@
-sbt.version=1.10.7
+sbt.version=1.11.6
diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt
index 7892c4f..3de99eb 100644
--- a/src/main/g8/build.sbt
+++ b/src/main/g8/build.sbt
@@ -2,7 +2,7 @@ name := "$name$"
 
 version := "1.0"
 
-scalaVersion := "2.13.15"
+scalaVersion := "2.13.16"
 
 lazy val pekkoVersion = "$pekko_version$"
 
@@ -14,7 +14,7 @@ fork := true
 
 libraryDependencies ++= Seq(
   "org.apache.pekko" %% "pekko-actor-typed" % pekkoVersion,
-  "ch.qos.logback" % "logback-classic" % "1.3.14",
+  "ch.qos.logback" % "logback-classic" % "1.3.15",
   "org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion % Test,
   "org.scalatest" %% "scalatest" % "3.2.19" % Test
 )
diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties
index c9910f7..8104634 100644
--- a/src/main/g8/default.properties
+++ b/src/main/g8/default.properties
@@ -1,5 +1,5 @@
 name = pekko-quickstart-scala
 description = Apache Pekko is a toolkit and runtime for building highly 
concurrent, distributed, and fault tolerant event-driven apps. This simple 
application will get you started building Actor based systems with Scala. This 
app uses Apache Pekko, Scala, and ScalaTest.
-pekko_version=1.1.2
+pekko_version=1.2.0
 sbt_version=maven(org.scala-sbt, sbt, stable)
 package=com.example


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to