Skip to content

Commit 2a6ab23

Browse files
authored
Merge pull request #171 from ThoughtWorksInc/update/3.0.x/scala-project-template
Update scala-project-template
2 parents 83d5d84 + 7fe9f15 commit 2a6ab23

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/scala.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
scala:
19-
- 2.12.15
19+
- 2.12.20
2020
distribution:
2121
- temurin
2222
java:
@@ -25,16 +25,17 @@ jobs:
2525
- 17
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929
with:
3030
fetch-depth: 0 # Need the git history for sbt-dynver to determine the version
3131
- name: Set up JDK 11
32-
uses: actions/setup-java@v2
32+
uses: actions/setup-java@v3
3333
with:
3434
java-version: ${{ matrix.java }}
3535
distribution: ${{ matrix.distribution }}
36+
- uses: sbt/setup-sbt@v1
3637
- name: Cache SBT
37-
uses: actions/cache@v2
38+
uses: actions/cache@v3
3839
with:
3940
path: |
4041
~/.ivy2/local/

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
runner.dialect = scala212source3
2-
version = "3.7.5"
2+
version = "3.8.3"
33
maxColumn = 80

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.1
1+
sbt.version=1.10.7

project/sbt-best-practice.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin(
2-
"com.thoughtworks.sbt-best-practice" % "sbt-best-practice" % "8.3.0"
2+
"com.thoughtworks.sbt-best-practice" % "sbt-best-practice" % "8.3.1"
33
)

0 commit comments

Comments
 (0)