This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch java17 in repository https://gitbox.apache.org/repos/asf/pekko-site.git
commit 952a826427887a5bd66e19f6b5254ce4ac50f082 Author: PJ Fanning <[email protected]> AuthorDate: Sat Oct 25 12:33:31 2025 +0100 use java 17 for build --- .github/workflows/site.yml | 8 ++++---- README.md | 2 +- project/build.properties | 2 +- project/plugins.sbt | 2 ++ 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 8352ae6b..72af76b5 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -9,15 +9,15 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: 0 - - name: Setup Java 8 - uses: actions/setup-java@v4 + - name: Setup Java 17 + uses: actions/setup-java@v5 with: distribution: temurin - java-version: 8 + java-version: 17 - name: Build Paradox run: |- sbt clean paradox diff --git a/README.md b/README.md index e48bf5fe..45b87152 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Anyone looking to help improve our module specific docs should look at the Git r The site is built using [Paradox](https://developer.lightbend.com/docs/paradox/current/). -To build the site locally, run: +Use Java 17 to build the site locally. Try run: ``` sbt paradox diff --git a/project/build.properties b/project/build.properties index c02c575f..01a16ed1 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.11.3 +sbt.version=1.11.7 diff --git a/project/plugins.sbt b/project/plugins.sbt index edd4d8c2..029b86f3 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -16,3 +16,5 @@ */ addSbtPlugin("org.apache.pekko" % "pekko-sbt-paradox" % "1.0.1") +addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.10.7") +addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.10.7") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
