Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
java: [11, 17, 21]
java: [17, 21]
Comment thread
curfew-marathon marked this conversation as resolved.

Comment thread
curfew-marathon marked this conversation as resolved.
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -37,7 +37,7 @@ jobs:
run: |
./gradlew build test-integration

- if: matrix.java == 11
- if: matrix.java == 17
name: Upload coverage to Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
continue-on-error: true
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: 11
java-version: 17
distribution: "temurin"

- name: Validate Gradle wrapper
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: 11
java-version: 17
distribution: "temurin"

- name: Validate Gradle wrapper
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
// Quality
id 'jacoco'
id 'jvm-test-suite'
id 'com.diffplug.spotless' version '7.2.1'
id 'com.diffplug.spotless' version '8.2.1'

// IDE
id 'idea'
Expand All @@ -26,8 +26,8 @@ repositories {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Comment thread
curfew-marathon marked this conversation as resolved.

withJavadocJar()
withSourcesJar()
Expand Down
Loading