Skip to content

Commit

Permalink
build: downgrade spotless to version 6.13.0
Browse files Browse the repository at this point in the history
Later versions of spotless do not support Java 8 anymore. Refer to:
diffplug/spotless#1337 (comment)
  • Loading branch information
jahrim committed Jun 22, 2023
1 parent 17f8b76 commit 494dfee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-deployment.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
java-version: 8
# Install Node in the provided runner
- name: Install Node
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-testing.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [windows, macos, ubuntu]
java-version: [11, 17]
java-version: [8, 11, 17]
runs-on: ${{matrix.os}}-latest
steps:
# Install the specified version of Java in the provided runner
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Expand Up @@ -2,7 +2,7 @@
scala-version = "3.3.0" # required to run scala
scalatest-version = "3.2.15" # required to test scala
scalatestplusjunit-version = "3.2.16.0" # required to run scalatest directly within IntelliJ
spotless-version = "6.19.0" # required to apply different style checkers within the project
spotless-version = "6.13.0" # required to apply different style checkers within the project
scalafmt-version = "3.7.1" # style checker for scala
wartremover-version = "0.1.1" # code linter for scala
git-semantic-versioning-version = "1.1.9" # assigns a project version depending on the existing git tags
Expand Down

0 comments on commit 494dfee

Please sign in to comment.