File tree Expand file tree Collapse file tree 7 files changed +18
-28
lines changed
platform-grpc-service-framework
platform-http-service-framework Expand file tree Collapse file tree 7 files changed +18
-28
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 test :
12- runs-on : ubuntu-22 .04
12+ runs-on : ubuntu-24 .04
1313 steps :
1414 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1515 - name : Check out code
16- uses : actions/checkout@v3
16+ uses : actions/checkout@v4
1717 with :
1818 fetch-depth : 0
1919
2222 with :
2323 args : build jacocoTestReport
2424
25- - name : Upload coverage to Codecov
26- uses : codecov/codecov-action@v4
27- with :
28- name : unit test reports
29- fail_ci_if_error : true
30- flags : unit
31- token : ${{ secrets.CODECOV_TOKEN }}
32-
3325 - name : copy test reports
3426 uses : hypertrace/github-actions/gradle@main
3527 if : failure()
5042 github_token : ${{ secrets.GITHUB_TOKEN }}
5143 files : ./**/build/test-results/**/*.xml
5244 dependency-check :
53- runs-on : ubuntu-22 .04
45+ runs-on : ubuntu-24 .04
5446 steps :
5547 - name : Dependency Check
5648 uses : hypertrace/github-actions/dependency-check@main
Original file line number Diff line number Diff line change 88
99jobs :
1010 publish-artifacts :
11- runs-on : ubuntu-22 .04
11+ runs-on : ubuntu-24 .04
1212 steps :
1313 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1414 - name : Check out code
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
2121 with :
2222 args : publish
2323 env :
24- ORG_GRADLE_PROJECT_artifactory_contextUrl : ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
25- ORG_GRADLE_PROJECT_artifactory_user : ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
26- ORG_GRADLE_PROJECT_artifactory_password : ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}
24+ ORG_GRADLE_PROJECT_maven_repo_url : ${{ secrets.HAR_REPO_URL }}
25+ ORG_GRADLE_PROJECT_maven_user : ${{ secrets.HAR_PUBLISH_USER }}
26+ ORG_GRADLE_PROJECT_maven_password : ${{ secrets.HAR_PUBLISH_TOKEN }}
2727
2828
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22import org.hypertrace.gradle.publishing.License
33
44plugins {
5- id(" org.hypertrace.repository-plugin" ) version " 0.4 .0"
6- id(" org.hypertrace.ci-utils-plugin" ) version " 0.3.2 "
7- id(" org.hypertrace.publish-plugin" ) version " 1.0.2 " apply false
8- id(" org.hypertrace.jacoco-report-plugin" ) version " 0.2.1 " apply false
9- id(" org.hypertrace.code-style-plugin" ) version " 1 .1.2" apply false
5+ id(" org.hypertrace.repository-plugin" ) version " 0.5 .0"
6+ id(" org.hypertrace.ci-utils-plugin" ) version " 0.4.0 "
7+ id(" org.hypertrace.publish-plugin" ) version " 1.1.1 " apply false
8+ id(" org.hypertrace.jacoco-report-plugin" ) version " 0.3.0 " apply false
9+ id(" org.hypertrace.code-style-plugin" ) version " 2 .1.2" apply false
1010 id(" org.owasp.dependencycheck" ) version " 12.1.0"
1111}
1212
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies {
1010 api(platform(" io.grpc:grpc-bom:1.68.3" ))
1111 api(" io.grpc:grpc-api" )
1212 api(" io.grpc:grpc-services" )
13- api(" org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10 " )
13+ api(" org.hypertrace.core.grpcutils:grpc-client-utils:0.13.14 " )
1414 api(" com.typesafe:config:1.4.2" )
1515 api(" com.google.protobuf:protobuf-java:3.25.5" )
1616 api(project(" :service-framework-spi" ))
@@ -22,5 +22,5 @@ dependencies {
2222 implementation(" io.grpc:grpc-inprocess" )
2323 implementation(" io.grpc:grpc-netty" )
2424 implementation(" org.slf4j:slf4j-api:1.7.36" )
25- implementation(" org.hypertrace.core.grpcutils:grpc-server-utils:0.13.10 " )
25+ implementation(" org.hypertrace.core.grpcutils:grpc-server-utils:0.13.14 " )
2626}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55
66dependencies {
77 api(project(" :platform-service-framework" ))
8- api(" org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10 " )
8+ api(" org.hypertrace.core.grpcutils:grpc-client-utils:0.13.14 " )
99 api(" com.typesafe:config:1.4.2" )
1010 api(" jakarta.servlet:jakarta.servlet-api:6.0.0" )
1111 api(" com.google.inject:guice:7.0.0" )
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ pluginManagement {
44 repositories {
55 mavenLocal()
66 gradlePluginPortal()
7- maven(" https://hypertrace.jfrog.io/artifactory /maven" )
7+ maven(" https://us-maven.pkg.dev/hypertrace-repos /maven" )
88 }
99}
1010
1111plugins {
12- id(" org.hypertrace.version-settings" ) version " 0.2 .0"
12+ id(" org.hypertrace.version-settings" ) version " 0.3 .0"
1313}
1414
1515include(" :platform-grpc-service-framework" )
You can’t perform that action at this time.
0 commit comments