Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/nebula-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
java: [ 8 ]
name: CI with Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- run: |
git config --global user.name "Mantis OSS Maintainers"
git config --global user.email "mantis-oss-dev@googlegroups.com"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nebula-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- run: |
git config --global user.name "Mantis OSS Maintainers"
git config --global user.email "mantis-oss-dev@googlegroups.com"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nebula-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout PR
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup jdk
uses: actions/setup-java@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ buildscript {
}

dependencies {
classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:11.5.0'
classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:11.6.0'
classpath 'com.bmuschko:gradle-docker-plugin:6.7.0'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:3.0.0'
}
Expand All @@ -49,7 +49,7 @@ ext {
jettyVersion = '9.4.12.v20180830'
jsonVersion = '20160810'
junitVersion = '4.10'
lombokVersion = '1.18.10'
lombokVersion = '1.18.30'
mantisVersion = '2.0.98'
mockitoVersion = '3.+'
s3Version = '1.11.566'
Expand Down
14 changes: 7 additions & 7 deletions dependencies.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"annotationProcessor": {
"org.projectlombok:lombok": {
"locked": "1.18.10"
"locked": "1.18.30"
}
},
"compileClasspath": {
Expand Down Expand Up @@ -57,12 +57,12 @@
"locked": "3.13.0"
},
"org.projectlombok:lombok": {
"locked": "1.18.10"
"locked": "1.18.30"
}
},
"pmd": {
"net.sourceforge.pmd:pmd-java": {
"locked": "6.26.0"
"locked": "6.55.0"
}
},
"runtimeClasspath": {
Expand Down Expand Up @@ -112,12 +112,12 @@
"locked": "3.13.0"
},
"org.projectlombok:lombok": {
"locked": "1.18.10"
"locked": "1.18.30"
}
},
"testAnnotationProcessor": {
"org.projectlombok:lombok": {
"locked": "1.18.10"
"locked": "1.18.30"
}
},
"testCompileClasspath": {
Expand Down Expand Up @@ -173,7 +173,7 @@
"locked": "3.12.4"
},
"org.projectlombok:lombok": {
"locked": "1.18.10"
"locked": "1.18.30"
}
},
"testRuntimeClasspath": {
Expand Down Expand Up @@ -229,7 +229,7 @@
"locked": "3.12.4"
},
"org.projectlombok:lombok": {
"locked": "1.18.10"
"locked": "1.18.30"
}
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
#
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading