Skip to content

Commit

Permalink
Address critical 3PP vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
slodha committed Aug 30, 2024
1 parent c84e217 commit 7c51b6f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.11
- name: Set up JDK 1.17
uses: actions/setup-java@v2
with:
distribution: 'zulu'
Expand Down Expand Up @@ -43,4 +43,4 @@ jobs:
# with:
# image-name: salesforce/carbonj:${{ env.GRADLE_PROJECT_VERSION }}
# severity-threshold: CRITICAL
# run-quality-checks: false
# run-quality-checks: false
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.11
- name: Set up JDK 1.17
uses: actions/setup-java@v2
with:
java-version: 17
Expand All @@ -27,4 +27,4 @@ jobs:
- name: Release with Gradle
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew -PdockerRepo=salesforce/ clean build -Prelease.useAutomaticVersion=true -x test :carbonj.service:release --info --stacktrace
run: ./gradlew -PdockerRepo=salesforce/ clean build -Prelease.useAutomaticVersion=true -x test :carbonj.service:release --info --stacktrace
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ buildscript {
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springbootVersion}")
Expand Down Expand Up @@ -68,4 +67,4 @@ subprojects {
}


}
}
3 changes: 1 addition & 2 deletions carbonj.service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springbootVersion}"
classpath 'org.hibernate.build.gradle:gradle-maven-publish-auth:2.0.1'
classpath 'net.researchgate:gradle-release:2.8.1'
classpath 'net.researchgate:gradle-release:3.0.2'
classpath 'com.netflix.nebula:gradle-ospackage-plugin:8.6.3'
}
}
Expand Down Expand Up @@ -81,7 +81,6 @@ ext {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}

bootJar {
Expand Down
4 changes: 1 addition & 3 deletions cc-metrics-reporter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.hibernate.build.gradle:gradle-maven-publish-auth:2.0.1'
Expand All @@ -21,7 +20,6 @@ apply plugin: 'distribution'
repositories {
mavenLocal()
mavenCentral()
jcenter()
}


Expand Down Expand Up @@ -54,4 +52,4 @@ publishing {
repositories {
mavenLocal()
}
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ version=1.1.57-SNAPSHOT
org.gradle.jvmargs=--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED
org.gradle.daemon=true
ccGradlePluginVersion=3.0.3
springbootVersion=3.0.2
springbootVersion=3.2.0

0 comments on commit 7c51b6f

Please sign in to comment.