Skip to content

Commit a5f6d25

Browse files
authored
pekko 1.2 (#13)
1 parent dbb1d5a commit a5f6d25

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,27 @@ on:
99
jobs:
1010
build-test:
1111
if: github.repository == 'apache/pekko-http-quickstart-scala.g8'
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Setup Java 11
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with:
2121
distribution: temurin
2222
java-version: 11
2323

24+
- name: Install sbt
25+
uses: sbt/setup-sbt@17575ea4e18dd928fe5968dbe32294b97923d65b # v1.1.13
26+
2427
- name: Cache Coursier cache
25-
uses: coursier/cache-action@v6
28+
uses: coursier/cache-action@4e2615869d13561d626ed48655e1a39e5b192b3c # v6.4.7
2629

2730
- name: sbt & Paradox
2831
run: sbt test docs/paradox
2932

30-
- name: generate and test, Scala 3
33+
- name: generate and test, Scala 2.13
3134
run: |-
32-
sbt new file://$PWD --name=hello-world --scala_version=3.3.1 --force && pushd hello-world && sbt test
35+
sbt new file://$PWD --name=hello-world --scala_version=2.13.16 --force && pushd hello-world && sbt test

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.2
1+
sbt.version=1.11.6

src/main/g8/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ lazy val root = (project in file(".")).
1919
"org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion,
2020
"org.apache.pekko" %% "pekko-actor-typed" % pekkoVersion,
2121
"org.apache.pekko" %% "pekko-stream" % pekkoVersion,
22-
"ch.qos.logback" % "logback-classic" % "1.3.14",
22+
"ch.qos.logback" % "logback-classic" % "1.3.15",
2323

2424
"org.apache.pekko" %% "pekko-http-testkit" % pekkoHttpVersion % Test,
2525
"org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion % Test,

src/main/g8/default.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name=My Pekko HTTP Project
22
description=This is a seed project which creates a basic build for a Pekko HTTP application using Scala.
3-
scala_version=2.13.15
4-
pekko_http_version=1.1.0
5-
pekko_version=1.1.2
3+
scala_version=3.3.6
4+
pekko_http_version=1.2.0
5+
pekko_version=1.2.0
66
sbt_version=maven(org.scala-sbt, sbt, stable)
77
organization=com.example
88
package=$organization$

0 commit comments

Comments
 (0)