Skip to content

Commit

Permalink
Replace deprecated olafurpg/setup-scala with actions/setup-java
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfurey committed Apr 10, 2024
1 parent e38976f commit 9b14ac3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: coursier/cache-action@v5
- uses: olafurpg/setup-scala@v10
- uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- run: git fetch --unshallow
- run: sbt +test libraryJVM/versionPolicyCheck
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- uses: olafurpg/setup-scala@v10
- uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- uses: coursier/cache-action@v5
- run: git fetch --unshallow
- run: sbt versionCheck ci-release
Expand Down

0 comments on commit 9b14ac3

Please sign in to comment.