Skip to content

Commit fc0c86e

Browse files
ci: update repos (#119)
* ci: update repos * ci: force rerun
1 parent 4dece62 commit fc0c86e

File tree

7 files changed

+18
-28
lines changed

7 files changed

+18
-28
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99

1010
jobs:
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

@@ -22,14 +22,6 @@ jobs:
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()
@@ -50,7 +42,7 @@ jobs:
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

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88

99
jobs:
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

@@ -21,8 +21,8 @@ jobs:
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

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22
import org.hypertrace.gradle.publishing.License
33

44
plugins {
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

codecov.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

platform-grpc-service-framework/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

platform-http-service-framework/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55

66
dependencies {
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")

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1111
plugins {
12-
id("org.hypertrace.version-settings") version "0.2.0"
12+
id("org.hypertrace.version-settings") version "0.3.0"
1313
}
1414

1515
include(":platform-grpc-service-framework")

0 commit comments

Comments
 (0)