8000 Use com.netflix.nebula.netflixoss 11.6.0 to move publishing to Sonaty… by OdysseusLives · Pull Request #756 · Netflix/archaius · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Use com.netflix.nebula.netflixoss 11.6.0 to move publishing to Sonaty… #756

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/nebula-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nebula-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ 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:
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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nebula-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v3
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: |
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
0