Skip to content

Commit 26e9fca

Browse files
Merge pull request #221 from Netflix/update-nebula.netflixoss-use-sonatype-central-portal
Use com.netflix.nebula.netflixoss 11.6.0 to move publishing to Sonaty…
2 parents 414f64d + caf92ce commit 26e9fca

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/nebula-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
java: [ 8 ]
1717
name: CI with Java ${{ matrix.java }}
1818
steps:
19-
- uses: actions/checkout@v1
19+
- uses: actions/checkout@v4
2020
- name: Setup git user
2121
run: |
2222
git config --global user.name "Netflix OSS Maintainers"
@@ -25,14 +25,14 @@ jobs:
2525
uses: actions/setup-java@v1
2626
with:
2727
java-version: ${{ matrix.java }}
28-
- uses: actions/cache@v1
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@v1
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,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v4
1313
- name: Setup git user
1414
run: |
1515
git config --global user.name "Netflix OSS Maintainers"
@@ -18,14 +18,14 @@ jobs:
1818
uses: actions/setup-java@v1
1919
with:
2020
java-version: 1.8
21-
- uses: actions/cache@v1
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@v1
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,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- name: Setup git user
@@ -20,13 +20,13 @@ jobs:
2020
uses: actions/setup-java@v1
2121
with:
2222
java-version: 8
23-
- uses: actions/cache@v2
23+
- uses: actions/cache@v4
2424
id: gradle-cache
2525
with:
2626
path: |
2727
~/.gradle/caches
2828
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
29-
- uses: actions/cache@v2
29+
- uses: actions/cache@v4
3030
id: gradle-wrapper-cache
3131
with:
3232
path: |

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
}
1414

1515
plugins {
16-
id 'nebula.netflixoss' version '11.5.0'
16+
id 'nebula.netflixoss' version '11.6.0'
1717
}
1818

1919
// Establish version and status

0 commit comments

Comments
 (0)