From 6bedd1b1c6d12d5c59059907051a863af43d5c26 Mon Sep 17 00:00:00 2001 From: Aubrey Chipman Date: Mon, 16 Jun 2025 23:16:23 -0400 Subject: [PATCH 1/4] Use com.netflix.nebula.netflixoss 11.6.0 to move publishing to Sonatype Central Portal from Sonatype Legacy OSSRH --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 6ed0fb3e..92e658df 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { } plugins { - id 'com.netflix.nebula.netflixoss' version '11.1.1' + id 'com.netflix.nebula.netflixoss' version '11.6.0' } // Establish version and status From a1754ac32fca94bed33e4feb2bb98e349b48accb Mon Sep 17 00:00:00 2001 From: Aubrey Chipman Date: Tue, 17 Jun 2025 02:11:29 -0400 Subject: [PATCH 2/4] Gradle 8.14.2 --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 8049c684..0b55a3bd 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 4ceca9ac4716eea003a98af43542328eaf975fcc Mon Sep 17 00:00:00 2001 From: Aubrey Chipman Date: Tue, 17 Jun 2025 02:11:53 -0400 Subject: [PATCH 3/4] Github action: cache v4 --- .github/workflows/nebula-ci.yml | 4 ++-- .github/workflows/nebula-publish.yml | 4 ++-- .github/workflows/nebula-snapshot.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nebula-ci.yml b/.github/workflows/nebula-ci.yml index e80c9d07..b6d8f13b 100644 --- a/.github/workflows/nebula-ci.yml +++ b/.github/workflows/nebula-ci.yml @@ -25,14 +25,14 @@ jobs: ${{ matrix.java }} 8 distribution: 'zulu' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: gradle-cache with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }} restore-keys: | - ${{ runner.os }}-gradle- - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: gradle-wrapper-cache with: path: ~/.gradle/wrapper diff --git a/.github/workflows/nebula-publish.yml b/.github/workflows/nebula-publish.yml index 73ed9b1d..a39cbdc7 100644 --- a/.github/workflows/nebula-publish.yml +++ b/.github/workflows/nebula-publish.yml @@ -15,14 +15,14 @@ jobs: with: java-version: '8' # For publishing build with 8 for compatibility distribution: 'zulu' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: gradle-cache with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }} restore-keys: | - ${{ runner.os }}-gradle- - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: gradle-wrapper-cache with: path: ~/.gradle/wrapper diff --git a/.github/workflows/nebula-snapshot.yml b/.github/workflows/nebula-snapshot.yml index c47f4f75..5b17a080 100644 --- a/.github/workflows/nebula-snapshot.yml +++ b/.github/workflows/nebula-snapshot.yml @@ -17,13 +17,13 @@ jobs: with: java-version: '8' # For publishing build with 8 for compatibility distribution: 'zulu' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: gradle-cache with: path: | ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: gradle-wrapper-cache with: path: | From d50325c6be9325a202522994e1dae4d90b282bc9 Mon Sep 17 00:00:00 2001 From: Aubrey Chipman Date: Tue, 17 Jun 2025 02:11:53 -0400 Subject: [PATCH 4/4] Github action: checkout v4 --- .github/workflows/nebula-ci.yml | 2 +- .github/workflows/nebula-publish.yml | 2 +- .github/workflows/nebula-snapshot.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nebula-ci.yml b/.github/workflows/nebula-ci.yml index b6d8f13b..ea7dfd8c 100644 --- a/.github/workflows/nebula-ci.yml +++ b/.github/workflows/nebula-ci.yml @@ -14,7 +14,7 @@ jobs: java: [ 8, 9, 11, 17, 21] name: CI with Java ${{ matrix.java }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup jdk diff --git a/.github/workflows/nebula-publish.yml b/.github/workflows/nebula-publish.yml index a39cbdc7..dd9a5e0a 100644 --- a/.github/workflows/nebula-publish.yml +++ b/.github/workflows/nebula-publish.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup jdk 8 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/nebula-snapshot.yml b/.github/workflows/nebula-snapshot.yml index 5b17a080..3012c02f 100644 --- a/.github/workflows/nebula-snapshot.yml +++ b/.github/workflows/nebula-snapshot.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK