From 67bea66f27e92c7e87ba58f9cfd36f919a32d4b4 Mon Sep 17 00:00:00 2001 From: Philippus Baalman Date: Thu, 20 Jan 2022 07:58:25 +0100 Subject: [PATCH] Replace setup-scala with setup-java --- _overviews/contributors/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/_overviews/contributors/index.md b/_overviews/contributors/index.md index 2823404e7d..9345c41138 100644 --- a/_overviews/contributors/index.md +++ b/_overviews/contributors/index.md @@ -72,7 +72,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # Retrieve the content of the repository - - uses: olafurpg/setup-scala@v12 # Set up a jdk and sbt + - uses: actions/setup-java@v2 # Set up a jdk + with: + distribution: temurin + java-version: 8 - name: unit tests # Custom action consisting of a shell command run: sbt +test ~~~