Skip to content

Commit 713ace4

Browse files
committed
Use sbt/setup-sbt to explicitly install sbt in workflows
1 parent 4edd5ca commit 713ace4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
distribution: 'temurin'
1616
java-version: '17'
1717
cache: 'sbt'
18+
- uses: sbt/setup-sbt@v1
19+
with:
20+
sbt-runner-version: 1.10.2
1821
- run: sbt ci-release
1922
env:
2023
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}

.github/workflows/scala.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
with:
1717
java-version: "16"
1818
distribution: "adopt"
19+
- uses: sbt/setup-sbt@v1
20+
with:
21+
sbt-runner-version: 1.10.2
1922
- name: Check sources formatting
2023
run: sbt scalafmtCheck
2124
- name: Check sbt and project dir formatting

0 commit comments

Comments
 (0)