Skip to content

Commit

Permalink
actions/setup-java@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
tumakha committed Jul 22, 2024
1 parent d1e1cc7 commit b69e66f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
name: Scala Steward
steps:
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
check-latest: true
- name: Scala Steward
uses: scala-steward-org/scala-steward-action@v2
5 changes: 3 additions & 2 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
check-latest: true
cache: 'sbt'
- name: Run tests
run: sbt test
run: sbt clean coverage test coverageOff coverageReport

0 comments on commit b69e66f

Please sign in to comment.