Skip to content

Commit 2b1095a

Browse files
Merge pull request #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
2 parents 0d09ce3 + d50325c commit 2b1095a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/nebula-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
java: [ 8, 9, 11, 17, 21]
1515
name: CI with Java ${{ matrix.java }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
- name: Setup jdk
@@ -25,14 +25,14 @@ jobs:
2525
${{ matrix.java }}
2626
8
2727
distribution: 'zulu'
28-
- uses: actions/cache@v3
28+
- uses: actions/cache@v4
2929
id: gradle-cache
3030
with:
3131
path: ~/.gradle/caches
3232
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
3333
restore-keys: |
3434
- ${{ runner.os }}-gradle-
35-
- uses: actions/cache@v3
35+
- uses: actions/cache@v4
3636
id: gradle-wrapper-cache
3737
with:
3838
path: ~/.gradle/wrapper

.github/workflows/nebula-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Setup jdk 8
1414
uses: actions/setup-java@v3
1515
with:
1616
java-version: '8' # For publishing build with 8 for compatibility
1717
distribution: 'zulu'
18-
- uses: actions/cache@v3
18+
- uses: actions/cache@v4
1919
id: gradle-cache
2020
with:
2121
path: ~/.gradle/caches
2222
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
2323
restore-keys: |
2424
- ${{ runner.os }}-gradle-
25-
- uses: actions/cache@v3
25+
- uses: actions/cache@v4
2626
id: gradle-wrapper-cache
2727
with:
2828
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)