From 20062492de0417d31d11c867f01fac0e8044b589 Mon Sep 17 00:00:00 2001 From: Aleksandar Apostolov Date: Wed, 27 Aug 2025 13:07:27 +0200 Subject: [PATCH 1/2] Update sonatype URL --- .github/workflows/android.yml | 2 +- scripts/publish-root.gradle | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 4f1dae4cb..64e6fb0b8 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: set up JDK uses: actions/setup-java@v1 diff --git a/scripts/publish-root.gradle b/scripts/publish-root.gradle index 0e88a11c6..e26354c76 100644 --- a/scripts/publish-root.gradle +++ b/scripts/publish-root.gradle @@ -36,6 +36,8 @@ if (snapshot) { nexusPublishing { repositories { sonatype { + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) stagingProfileId = sonatypeStagingProfileId username = ossrhUsername password = ossrhPassword From b1411f80a86cc2b63c80ea8cd29fde21b889b9cb Mon Sep 17 00:00:00 2001 From: Aleksandar Apostolov Date: Wed, 27 Aug 2025 13:09:48 +0200 Subject: [PATCH 2/2] Correct cache version --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 64e6fb0b8..5d55506ec 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: set up JDK uses: actions/setup-java@v1 @@ -18,7 +18,7 @@ jobs: java-version: 17 - name: Cache Gradle and wrapper - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches