diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4957502..d2d3d29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,8 +68,8 @@ jobs: env: SCALA_VERSION: ${{ matrix.scala-version }} SPARK_VERSION: ${{ matrix.spark-version }} - SONATYPE_TOKEN_USER: ${{ secrets.SONATYPE_TOKEN_USER }} - SONATYPE_TOKEN_PWD: ${{ secrets.SONATYPE_TOKEN_PWD }} + SONATYPE_PORTAL_TOKEN_USER: ${{ secrets.SONATYPE_PORTAL_TOKEN_USER }} + SONATYPE_PORTAL_TOKEN_PWD: ${{ secrets.SONATYPE_PORTAL_TOKEN_PWD }} PGP_KEY: ${{ secrets.PGP_KEY }} PGP_PWD: ${{ secrets.PGP_PWD }} diff --git a/gradle/release.gradle b/gradle/release.gradle index 936040a..1b5fce0 100644 --- a/gradle/release.gradle +++ b/gradle/release.gradle @@ -32,8 +32,10 @@ apply plugin: "io.github.gradle-nexus.publish-plugin" // https://github.com/gra nexusPublishing { repositories { sonatype { - username = System.getenv("SONATYPE_TOKEN_USER") - password = System.getenv("SONATYPE_TOKEN_PWD") + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) + username = System.getenv("SONATYPE_PORTAL_TOKEN_USER") + password = System.getenv("SONATYPE_PORTAL_TOKEN_PWD") } } diff --git a/isolation-forest-onnx/requirements.txt b/isolation-forest-onnx/requirements.txt index c48c5de..26f3874 100644 --- a/isolation-forest-onnx/requirements.txt +++ b/isolation-forest-onnx/requirements.txt @@ -1,5 +1,5 @@ avro-python3==1.9.1 numpy==1.26.4 onnx==1.17.0 -onnxruntime==1.18.0 +onnxruntime==1.22.0 protobuf==5.29.5