This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pekko-1.2.0 in repository https://gitbox.apache.org/repos/asf/pekko-grpc-quickstart-scala.g8.git
commit b2debdcc392ed38c273c49e5f600a4abb0e95f1f Author: PJ Fanning <[email protected]> AuthorDate: Wed Sep 10 12:03:20 2025 +0100 pekko 1.2.0 --- .github/workflows/ci.yml | 11 +++++++---- docs/build.sbt | 2 +- project/build.properties | 2 +- src/main/g8/default.properties | 6 +++--- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 169b612..cd1c7b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,20 +12,23 @@ jobs: check: name: Build and test if: github.repository == 'apache/pekko-grpc-quickstart-scala.g8' - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - 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@6c68d2fe8dfbc0a0534d70101baa2e0420e1a506 # v1.1.9 + - name: Cache Coursier cache - uses: coursier/cache-action@v6 + uses: coursier/cache-action@4e2615869d13561d626ed48655e1a39e5b192b3c # 6.4.7 - name: sbt & Paradox run: sbt test docs/paradox diff --git a/docs/build.sbt b/docs/build.sbt index aebd43a..4d4d779 100644 --- a/docs/build.sbt +++ b/docs/build.sbt @@ -1,5 +1,5 @@ // Scala version to use inside sbt -scalaVersion := "2.12.20" +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 09feeee..5e6884d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.4 +sbt.version=1.11.6 diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties index 2ff71e9..67fff59 100644 --- a/src/main/g8/default.properties +++ b/src/main/g8/default.properties @@ -1,8 +1,8 @@ name = pekko-grpc-quickstart-scala description = Apache Pekko gRPC is a toolkit for building streaming gRPC servers and clients on top of Pekko Streams. This simple application will get you started building gRPC based systems with Scala. This app uses Pekko, Scala, and ScalaTest. -pekko_grpc_version=1.1.0 -pekko_version=1.1.2 +pekko_grpc_version=1.1.1 +pekko_version=1.2.0 sbt_version=maven(org.scala-sbt, sbt, stable) scala_major_version=2.13 -scala_version=2.13.15 +scala_version=2.13.16 verbatim=*.scala *.conf *.proto *.pem *.key gradlew gradlew.bat gradle-wrapper.properties gradle-wrapper.jar --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
