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/incubator-pekko-quickstart-scala.g8.git


The following commit(s) were added to refs/heads/main by this push:
     new 191aea9  pekko 1.0.2 and other dependency updates (#8)
191aea9 is described below

commit 191aea9e6adaffde63e389648e3b558db030ff3d
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Dec 2 12:39:44 2023 +0100

    pekko 1.0.2 and other dependency updates (#8)
    
    * pekko 1.0.2 and other dependency updates
    
    * Update build-test.yml
---
 .github/workflows/build-test.yml | 9 +++++----
 README.md                        | 4 ++--
 docs/build.sbt                   | 2 +-
 project/build.properties         | 2 +-
 src/main/g8/build.sbt            | 6 +++---
 src/main/g8/default.properties   | 2 +-
 6 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 55535c7..4356c0e 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -8,18 +8,19 @@ jobs:
     runs-on: ubuntu-20.04
     steps:
       - name: Checkout
-        uses: actions/checkout@v2
+        uses: actions/checkout@v4
         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: olafurpg/setup-scala@v10
+        uses: actions/setup-java@v4
         with:
-          java-version: [email protected]
+          distribution: temurin
+          java-version: 11
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: generate and test
         # This runs the template with the default parameters, and runs test 
within the templated app.
diff --git a/README.md b/README.md
index 1c78ca7..06a0b42 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 ## Quickstart guide
 
-The Hello World example illustrates Pekko basics. Within 30 minutes, you 
should be able to download and run the example and use this guide to understand 
how the example is constructed. This will get your feet wet, and hopefully 
inspire you to dive deeper into the wonderful world of Apache Pekko!
+The Hello World example illustrates Apache Pekko basics. Within 30 minutes, 
you should be able to download and run the example and use this guide to 
understand how the example is constructed. This will get your feet wet, and 
hopefully inspire you to dive deeper into the wonderful world of Apache Pekko!
 
 ## Giter8 template
 
@@ -14,7 +14,7 @@ Prerequisites:
 
 Open a console and run the following command to apply this template:
  ```
-sbt -Dsbt.version=1.9.4 new apache/incubator-pekko-quickstart-scala.g8
+sbt -Dsbt.version=1.9.7 new apache/incubator-pekko-quickstart-scala.g8
  ```
 
 This template will prompt for the name of the project. Press `Enter` if the 
default values suit you.
diff --git a/docs/build.sbt b/docs/build.sbt
index fa14e45..14427f8 100644
--- a/docs/build.sbt
+++ b/docs/build.sbt
@@ -1,4 +1,4 @@
-scalaVersion := "2.13.11"
+scalaVersion := "2.13.12"
 
 Compile / paradoxProperties ++= Map(
   "snip.g8root.base_dir" -> "../../../../src/main/g8"
diff --git a/project/build.properties b/project/build.properties
index 3040987..e8a1e24 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -1 +1 @@
-sbt.version=1.9.4
+sbt.version=1.9.7
diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt
index e10513a..c23145d 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.11"
+scalaVersion := "2.13.12"
 
 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.2.12",
+  "ch.qos.logback" % "logback-classic" % "1.2.13",
   "org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion % Test,
-  "org.scalatest" %% "scalatest" % "3.2.15" % Test
+  "org.scalatest" %% "scalatest" % "3.2.17" % Test
 )
diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties
index 1da2205..2379194 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.0.1
+pekko_version=1.0.2
 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