Skip to content

Commit

Permalink
ci: use setup-java action instead of setup-scala
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeljw committed Apr 1, 2024
1 parent 03b83d8 commit 1eac2ae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr-build.yml
Expand Up @@ -16,7 +16,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v14
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: temurin@17
distribution: temurin
java-version: 17
cache: sbt
- run: sbt commitCheck
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -11,9 +11,12 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v14
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: temurin@17
distribution: temurin
java-version: 17
cache: sbt
- uses: olafurpg/setup-gpg@v3
- run: sbt ci-release
env:
Expand Down

0 comments on commit 1eac2ae

Please sign in to comment.