Skip to content

Commit

Permalink
Update github workflows to latest actions, temurin distribution.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Maurer committed Jan 7, 2025
1 parent b13f741 commit a2bb937
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fullTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: '${{ matrix.java }}'
distribution: 'adopt'
distribution: 'temurin'
- name: Run tests with Akka 2.6 and Scala 2.12,2.13,3.1
run: sbt +test +doc
12 changes: 5 additions & 7 deletions .github/workflows/pullCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '15'
distribution: 'adopt'
java-version: '17'
distribution: 'temurin'
- name: Run tests with Akka 2.6 and Scala 2.12,2.13,3.0
run: sbt +test
- name: Run tests with Akka 2.5 and Scala 2.13
run: sbt -Dakka.build.version=2.5.32 clean test

0 comments on commit a2bb937

Please sign in to comment.