Skip to content

Commit bb8cd36

Browse files
Merge branch 'main' into renovate/guava-monorepo
2 parents 01c23fc + 9d20385 commit bb8cd36

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: "gradle"
2525
- # Required for the package command tests to work
2626
name: Set up Docker Buildx
27-
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
27+
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4
2828
- name: Validate Gradle wrapper
2929
uses: gradle/actions/wrapper-validation@11d4d83c63a6ce61b32d8a9c4faddbdb04fe9917
3030
- name: Build package
@@ -33,7 +33,7 @@ jobs:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
GITHUB_ACTOR: ${{ github.actor }}
3535
- name: Publish Test Report
36-
uses: mikepenz/action-junit-report@d9f48fc87bc235f7e214acf696ca5abc0a986f16 # v6
36+
uses: mikepenz/action-junit-report@a9170d5795813c01ab4901ffb045b52bab4ab09d # v6
3737
if: success() || failure() # always run even if the previous step fails
3838
with:
3939
report_paths: "**/build/test-results/test/TEST-*.xml"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY . .
88

99
RUN gradle jar --no-daemon
1010

11-
FROM eclipse-temurin:25.0.3_9-jre
11+
FROM eclipse-temurin:25.0.4_7-jre
1212

1313
COPY --from=build /code/lib/build/libs/*.jar /app/app.jar
1414

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

lib/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
id "io.freefair.lombok" version "9.5.0"
44
id "maven-publish"
5-
id "com.diffplug.spotless" version "8.8.0"
5+
id "com.diffplug.spotless" version "8.10.0"
66
}
77

88
group 'io.cloudquery'
@@ -38,20 +38,20 @@ dependencies {
3838
implementation 'org.apache.arrow:arrow-vector:19.0.0'
3939
implementation 'commons-io:commons-io:2.22.0'
4040

41-
implementation "com.fasterxml.jackson.core:jackson-core:2.22.1"
41+
implementation "com.fasterxml.jackson.core:jackson-core:2.22.2"
4242
implementation "com.fasterxml.jackson.core:jackson-annotations:2.22"
4343

4444
implementation 'org.apache.logging.log4j:log4j-api:2.26.1'
4545
implementation 'org.apache.logging.log4j:log4j-core:2.26.1'
4646

4747
testImplementation 'io.grpc:grpc-testing:1.83.0'
4848
testImplementation 'io.grpc:grpc-inprocess:1.83.0'
49-
testImplementation platform('org.junit:junit-bom:6.1.2')
50-
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.2'
51-
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.1.2'
49+
testImplementation platform('org.junit:junit-bom:6.1.3')
50+
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.3'
51+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.1.3'
5252
testImplementation 'org.mockito:mockito-core:5.23.0'
5353
testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0'
54-
testImplementation 'nl.jqno.equalsverifier:equalsverifier:4.5'
54+
testImplementation 'nl.jqno.equalsverifier:equalsverifier:4.5.1'
5555
testImplementation 'org.assertj:assertj-core:3.27.7'
5656
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
5757

0 commit comments

Comments
 (0)