Skip to content

Commit

Permalink
Merge pull request #283 from Philippus/update/github-actions
Browse files Browse the repository at this point in the history
Add setup-sbt and update checkout and setup-java github actions
  • Loading branch information
SethTisue authored Dec 20, 2024
2 parents a306ce0 + 022cc20 commit f087bf7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:
scala: [2.12.x, 2.13.x, 3.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{matrix.java}}
- uses: sbt/setup-sbt@v1
- name: Test
run: sbt ++${{matrix.scala}} test mimaReportBinaryIssues package
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
- uses: sbt/setup-sbt@v1
- uses: olafurpg/setup-gpg@v3
- run: sbt ci-release
env:
Expand Down

0 comments on commit f087bf7

Please sign in to comment.