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

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


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

commit d2acb833f8e9e672a43842be336ade767a484350
Author: PJ Fanning <[email protected]>
AuthorDate: Mon Sep 8 16:32:23 2025 +0100

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

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 58ddbc1..ef7f23b 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: sbt test
         # This runs the template with the default parameters, and runs test 
within the templated app.
diff --git a/project/build.properties b/project/build.properties
index ee4c672..5e6884d 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -1 +1 @@
-sbt.version=1.10.1
+sbt.version=1.11.6
diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt
index f009128..c8bfffa 100644
--- a/src/main/g8/build.sbt
+++ b/src/main/g8/build.sbt
@@ -2,7 +2,7 @@ name := "pekko-quickstart-java"
 
 version := "1.0"
 
-scalaVersion := "2.13.14"
+scalaVersion := "2.13.16"
 
 lazy val pekkoVersion = "$pekko_version$"
 
@@ -15,6 +15,6 @@ fork := true
 libraryDependencies ++= Seq(
   "org.apache.pekko" %% "pekko-actor-typed" % pekkoVersion,
   "org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion,
-  "ch.qos.logback" % "logback-classic" % "1.3.14",
+  "ch.qos.logback" % "logback-classic" % "1.3.15",
   "junit" % "junit" % "4.13.2" % Test,
-  "com.novocode" % "junit-interface" % "0.11" % Test)
+  "com.github.sbt" % "junit-interface" % "0.13.2" % Test)
diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties
index 42011b1..134e842 100644
--- a/src/main/g8/default.properties
+++ b/src/main/g8/default.properties
@@ -1,5 +1,5 @@
 name = pekko-quickstart-java
 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 Java.
-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