Skip to content

Commit 59703d7

Browse files
committed
Use setup-sbt in github action
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
1 parent 2e8352c commit 59703d7

File tree

6 files changed

+6
-2
lines changed

6 files changed

+6
-2
lines changed

.github/workflows/containers.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
with:
3030
distribution: 'temurin'
3131
java-version: '21'
32+
- uses: sbt/setup-sbt@v1
3233
- name: "Install PHP"
3334
uses: "shivammathur/setup-php@v2"
3435
with:

.github/workflows/master.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
with:
1717
distribution: 'temurin'
1818
java-version: '22'
19+
- uses: sbt/setup-sbt@v1
1920
- name: "Install PHP"
2021
uses: "shivammathur/setup-php@v2"
2122
with:

.github/workflows/pr.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
distribution: 'temurin'
1818
java-version: ${{ matrix.jvm }}
1919
cache: "sbt"
20+
- uses: sbt/setup-sbt@v1
2021
- name: "Install PHP"
2122
uses: "shivammathur/setup-php@v2"
2223
with:

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
with:
2323
distribution: 'temurin'
2424
java-version: '21'
25+
- uses: sbt/setup-sbt@v1
2526
- name: "Install PHP"
2627
uses: "shivammathur/setup-php@v2"
2728
with:

project/Versions.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ object Versions {
55
val scalatest = "3.2.19"
66
val cats = "3.5.4"
77
val json4s = "4.0.7"
8-
val gradleTooling = "8.8"
8+
val gradleTooling = "8.9"
99
val circe = "0.14.9"
1010
val requests = "0.8.3"
1111
val upickle = "3.3.1"

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.9
1+
sbt.version=1.10.1

0 commit comments

Comments
 (0)