Skip to content

Commit 660637b

Browse files
Cherry pick of #756 from Netflix/update-nebula.netflixoss-use-sonatype-central-portal
Use com.netflix.nebula.netflixoss 11.6.0 to move publishing to Sonatype Central Portal from Sonatype Legacy OSSRH (cherry picked from commit 2b1095a)
1 parent 2c98773 commit 660637b

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/nebula-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ jobs:
1616
java: [ 8 ]
1717
name: CI with Java ${{ matrix.java }}
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
- name: Setup jdk
2323
uses: actions/setup-java@v3
2424
with:
2525
java-version: ${{ matrix.java }}
2626
distribution: 'zulu'
27-
- uses: actions/cache@v3
27+
- uses: actions/cache@v4
2828
id: gradle-cache
2929
with:
3030
path: ~/.gradle/caches
3131
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
3232
restore-keys: |
3333
- ${{ runner.os }}-gradle-
34-
- uses: actions/cache@v3
34+
- uses: actions/cache@v4
3535
id: gradle-wrapper-cache
3636
with:
3737
path: ~/.gradle/wrapper

.github/workflows/nebula-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Setup jdk 8
1717
uses: actions/setup-java@v3
1818
with:
1919
java-version: '8' # For publishing build with 8 for compatibility
2020
distribution: 'zulu'
21-
- uses: actions/cache@v3
21+
- uses: actions/cache@v4
2222
id: gradle-cache
2323
with:
2424
path: ~/.gradle/caches
2525
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
2626
restore-keys: |
2727
- ${{ runner.os }}-gradle-
28-
- uses: actions/cache@v3
28+
- uses: actions/cache@v4
2929
id: gradle-wrapper-cache
3030
with:
3131
path: ~/.gradle/wrapper

.github/workflows/nebula-snapshot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- name: Set up JDK
1616
uses: actions/setup-java@v3
1717
with:
1818
java-version: '8' # For publishing build with 8 for compatibility
1919
distribution: 'zulu'
20-
- uses: actions/cache@v3
20+
- uses: actions/cache@v4
2121
id: gradle-cache
2222
with:
2323
path: |
2424
~/.gradle/caches
2525
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
26-
- uses: actions/cache@v3
26+
- uses: actions/cache@v4
2727
id: gradle-wrapper-cache
2828
with:
2929
path: |

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
plugins {
8-
id 'com.netflix.nebula.netflixoss' version '11.1.1'
8+
id 'com.netflix.nebula.netflixoss' version '11.6.0'
99
}
1010

1111
// Establish version and status
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)