Skip to content

Commit

Permalink
Scalafmt: update to v3.7.17
Browse files Browse the repository at this point in the history
It is now published using java11.
  • Loading branch information
kitbellew committed Nov 17, 2023
1 parent f89dfb2 commit 79b3991
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '8' ]
java: [ '11' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '11'
cache: 'sbt'

- run: ./bin/scalafmt --test
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '11'
cache: 'sbt'
- run: sbt ci-release
env:
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.15
version = 3.7.17
runner.dialect = scala213
project.git = true
project.excludeFilters = [
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ inThisBuild(
)
publish / skip := true

val scalafmtVersion = "3.7.15"
val scalafmtVersion = "3.7.17"
onLoadMessage := s"Welcome to sbt-scalafmt ${version.value} (scalafmt ${scalafmtVersion})"

lazy val plugin = project
Expand Down

0 comments on commit 79b3991

Please sign in to comment.