update github actions due to warnings about nodejs version (#53)

* update github actions due to warnings about nodejs version

* use sbtx instead of sbt because sbtx supports -jvm-opts
This commit is contained in:
PJ Fanning 2022-11-17 12:51:24 +01:00 committed by GitHub
parent 9edbc60292
commit 494d62515e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 46 additions and 46 deletions

View file

@ -33,12 +33,12 @@ jobs:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 11
uses: olafurpg/setup-scala@v10
uses: olafurpg/setup-scala@v13
with:
java-version: adopt@1.11
@ -48,7 +48,7 @@ jobs:
- name: Compile and run tests on Scala 3
# note that this is not running any multi-jvm tests (yet) because multi-in-test=false
run: |
sbt -jvm-opts .jvmopts-ci \
sbtx -jvm-opts .jvmopts-ci \
-Dakka.log.timestamps=true \
-Dakka.test.timefactor=2 \
-Dakka.actor.testkit.typed.timefactor=2 \