From 1d7f85576b68dc6cadd970aa7b1246fd5eea344c Mon Sep 17 00:00:00 2001 From: Samuel Yeboah Date: Tue, 16 Jul 2024 17:18:35 -0700 Subject: [PATCH 1/4] gradle + nebula bump --- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 84cb319..eb3ba9a 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ buildscript { } dependencies { - classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:9.1.0' + classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:11.5.0' classpath 'com.bmuschko:gradle-docker-plugin:6.7.0' classpath 'com.palantir.gradle.gitversion:gradle-git-version:3.0.0' } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1825771..f24ac2e 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -15,6 +15,6 @@ # distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From f13b9036a57ea7001730b012752f23cb5aa48e55 Mon Sep 17 00:00:00 2001 From: Samuel Yeboah Date: Thu, 18 Jul 2024 13:07:29 -0700 Subject: [PATCH 2/4] add global config to git workflows --- .github/workflows/nebula-ci.yml | 5 +++++ .github/workflows/nebula-publish.yml | 4 ++++ .github/workflows/nebula-snapshot.yml | 3 +++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/nebula-ci.yml b/.github/workflows/nebula-ci.yml index 314ca6f..448a4b7 100644 --- a/.github/workflows/nebula-ci.yml +++ b/.github/workflows/nebula-ci.yml @@ -17,6 +17,11 @@ jobs: name: CI with Java ${{ matrix.java }} steps: - uses: actions/checkout@v1 + - run: | + git config --global user.name "Netflix OSS Maintainers" + git config --global user.email "netflixoss@netflix.com" + name: Setup git user + - name: Setup jdk uses: actions/setup-java@v1 with: diff --git a/.github/workflows/nebula-publish.yml b/.github/workflows/nebula-publish.yml index b818a40..9dd23ca 100644 --- a/.github/workflows/nebula-publish.yml +++ b/.github/workflows/nebula-publish.yml @@ -13,6 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - run: | + git config --global user.name "Netflix OSS Maintainers" + git config --global user.email "netflixoss@netflix.com" + - name: Setup jdk 8 uses: actions/setup-java@v1 with: diff --git a/.github/workflows/nebula-snapshot.yml b/.github/workflows/nebula-snapshot.yml index b4ee740..bd33a60 100644 --- a/.github/workflows/nebula-snapshot.yml +++ b/.github/workflows/nebula-snapshot.yml @@ -12,6 +12,9 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 + - run: | + git config --global user.name "Netflix OSS Maintainers" + git config --global user.email "netflixoss@netflix.com" - name: Set up JDK uses: actions/setup-java@v1 with: From f479c63848d0647d357cccdaa2377d6c541dbae7 Mon Sep 17 00:00:00 2001 From: Samuel Yeboah Date: Thu, 18 Jul 2024 13:40:25 -0700 Subject: [PATCH 3/4] remove space --- .github/workflows/nebula-ci.yml | 2 -- .github/workflows/nebula-publish.yml | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/nebula-ci.yml b/.github/workflows/nebula-ci.yml index 448a4b7..799bba4 100644 --- a/.github/workflows/nebula-ci.yml +++ b/.github/workflows/nebula-ci.yml @@ -20,8 +20,6 @@ jobs: - run: | git config --global user.name "Netflix OSS Maintainers" git config --global user.email "netflixoss@netflix.com" - name: Setup git user - - name: Setup jdk uses: actions/setup-java@v1 with: diff --git a/.github/workflows/nebula-publish.yml b/.github/workflows/nebula-publish.yml index 9dd23ca..ab87276 100644 --- a/.github/workflows/nebula-publish.yml +++ b/.github/workflows/nebula-publish.yml @@ -16,7 +16,6 @@ jobs: - run: | git config --global user.name "Netflix OSS Maintainers" git config --global user.email "netflixoss@netflix.com" - - name: Setup jdk 8 uses: actions/setup-java@v1 with: From 3e3d4ce0d8ccefe6760963b7150965586caff3d9 Mon Sep 17 00:00:00 2001 From: Samuel Yeboah Date: Fri, 19 Jul 2024 14:31:39 -0700 Subject: [PATCH 4/4] mantis maintainers email --- .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 799bba4..218020b 100644 --- a/.github/workflows/nebula-ci.yml +++ b/.github/workflows/nebula-ci.yml @@ -18,8 +18,8 @@ jobs: steps: - uses: actions/checkout@v1 - run: | - git config --global user.name "Netflix OSS Maintainers" - git config --global user.email "netflixoss@netflix.com" + git config --global user.name "Mantis OSS Maintainers" + git config --global user.email "mantis-oss-dev@googlegroups.com" - name: Setup jdk uses: actions/setup-java@v1 with: diff --git a/.github/workflows/nebula-publish.yml b/.github/workflows/nebula-publish.yml index ab87276..1f52160 100644 --- a/.github/workflows/nebula-publish.yml +++ b/.github/workflows/nebula-publish.yml @@ -14,8 +14,8 @@ jobs: steps: - uses: actions/checkout@v1 - run: | - git config --global user.name "Netflix OSS Maintainers" - git config --global user.email "netflixoss@netflix.com" + git config --global user.name "Mantis OSS Maintainers" + git config --global user.email "mantis-oss-dev@googlegroups.com" - name: Setup jdk 8 uses: actions/setup-java@v1 with: diff --git a/.github/workflows/nebula-snapshot.yml b/.github/workflows/nebula-snapshot.yml index bd33a60..a609a74 100644 --- a/.github/workflows/nebula-snapshot.yml +++ b/.github/workflows/nebula-snapshot.yml @@ -13,8 +13,8 @@ jobs: with: fetch-depth: 0 - run: | - git config --global user.name "Netflix OSS Maintainers" - git config --global user.email "netflixoss@netflix.com" + git config --global user.name "Mantis OSS Maintainers" + git config --global user.email "mantis-oss-dev@googlegroups.com" - name: Set up JDK uses: actions/setup-java@v1 with: