diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 57b2d117894..f039f6597b7 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -66,7 +66,7 @@ jobs: statuses: write steps: - name: Create pending status - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -89,7 +89,7 @@ jobs: - uses: ./.github/actions/setup-junit-report - name: Create success status - uses: actions/github-script@v7 + uses: actions/github-script@v8 if: success() with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -104,7 +104,7 @@ jobs: }) - name: Create failure status - uses: actions/github-script@v7 + uses: actions/github-script@v8 if: failure() with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 0127be63320..178ba299670 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -9,6 +9,6 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v5 + - uses: actions/labeler@v6 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/core/build.gradle b/core/build.gradle index 9b94f587a79..1b0ef50a729 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -70,8 +70,8 @@ configurations.all { dependencies { api 'junit:junit:4.13.2' api 'org.slf4j:slf4j-api:1.7.36' - compileOnly 'org.jetbrains:annotations:26.0.2' - testCompileOnly 'org.jetbrains:annotations:26.0.2' + compileOnly 'org.jetbrains:annotations:26.0.2-1' + testCompileOnly 'org.jetbrains:annotations:26.0.2-1' api 'org.apache.commons:commons-compress:1.24.0' api ('org.rnorth.duct-tape:duct-tape:1.0.8') { exclude(group: 'org.jetbrains', module: 'annotations') @@ -87,8 +87,8 @@ dependencies { shaded 'org.awaitility:awaitility:4.3.0' - api platform('com.github.docker-java:docker-java-bom:3.5.3') - shaded platform('com.github.docker-java:docker-java-bom:3.5.3') + api platform('com.github.docker-java:docker-java-bom:3.6.0') + shaded platform('com.github.docker-java:docker-java-bom:3.6.0') api "com.github.docker-java:docker-java-api" @@ -99,7 +99,7 @@ dependencies { api 'com.github.docker-java:docker-java-transport-zerodep' shaded 'com.google.guava:guava:33.3.1-jre' - shaded "org.yaml:snakeyaml:2.4" + shaded "org.yaml:snakeyaml:2.5" shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2' diff --git a/modules/orientdb/build.gradle b/modules/orientdb/build.gradle index ea70b65c3b3..a6ab87a0d03 100644 --- a/modules/orientdb/build.gradle +++ b/modules/orientdb/build.gradle @@ -9,7 +9,7 @@ dependencies { testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4' testImplementation 'org.assertj:assertj-core:3.27.4' - testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.3' + testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.4' testImplementation "com.orientechnologies:orientdb-gremlin:3.2.43" } diff --git a/modules/pinecone/build.gradle b/modules/pinecone/build.gradle index 4c2f15e4682..20101b9b5d9 100644 --- a/modules/pinecone/build.gradle +++ b/modules/pinecone/build.gradle @@ -6,7 +6,7 @@ dependencies { testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0' testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4' - testImplementation 'org.assertj:assertj-core:3.27.3' + testImplementation 'org.assertj:assertj-core:3.27.4' testImplementation 'io.pinecone:pinecone-client:3.1.0' } diff --git a/settings.gradle b/settings.gradle index 2076cb71c86..0d13ebcc3fe 100644 --- a/settings.gradle +++ b/settings.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.19.2" - classpath "com.gradle:common-custom-user-data-gradle-plugin:2.3" + classpath "com.gradle:common-custom-user-data-gradle-plugin:2.4.0" classpath "org.gradle.toolchains:foojay-resolver:0.8.0" } }