Skip to content

Commit f2776a6

Browse files
committed
Add install SBT step in CI
1 parent 8f9f0fc commit f2776a6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- uses: actions/setup-java@v3
10+
- uses: actions/setup-java@v4
1111
with:
1212
java-version: 8
1313
distribution: temurin
14+
- uses: sbt/setup-sbt@v1
1415
- name: Mount caches
1516
uses: actions/cache@v3
1617
with:

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Set up JDK 1.8
12-
uses: actions/setup-java@v3
12+
uses: actions/setup-java@v4
1313
with:
1414
java-version: 8
1515
distribution: temurin
16+
- uses: sbt/setup-sbt@v1
1617
- uses: olafurpg/setup-gpg@v3
1718
- name: Publish ${{ github.ref }}
1819
run: sbt ci-release

0 commit comments

Comments
 (0)