From 4b7d0750a91ab7e2a9da1212b97a0f69502a3c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Fri, 5 Apr 2024 12:22:08 +0200 Subject: [PATCH] chore: repo gardening (#66) * chore: repo gardening * add nightly build so CI job isn't auto-disabled from inactivity --- .github/workflows/ci.yml | 17 ++++++++++++++--- README.md | 2 ++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74e6d77..f319436 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,11 @@ on: push: branches: - main + schedule: + - cron: "0 0 */7 * *" + +permissions: + contents: read jobs: build-test: @@ -13,15 +18,21 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + # https://github.com/actions/checkout/releases + # v4.1.1 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set up JDK 17 - uses: coursier/setup-action@v1.3.0 + # https://github.com/coursier/setup-action/releases + # v1.3.5 + uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f with: jvm: temurin:1.17 - name: Cache Coursier cache - uses: coursier/cache-action@v6.4.0 + # https://github.com/coursier/cache-action/releases + # v6.4.5 + uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d - name: sbt & Paradox run: sbt test docs/paradox diff --git a/README.md b/README.md index fce31ca..cb5fecc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ ## Akka HTTP quickstart in Java +The Akka family of projects is managed by teams at [Lightbend](https://lightbend.com/) with help from the community. + Please see the [quickstart guide](https://developer.lightbend.com/guides/akka-http-quickstart-java/) for a walk through the code.