Skip to content

Commit ce4f3be

Browse files
chore: update to latest (#74)
1 parent 65e4f61 commit ce4f3be

File tree

7 files changed

+21
-29
lines changed

7 files changed

+21
-29
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
analyze:
1515
name: Analyze
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
actions: read
1919
contents: read
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
# Initializes the CodeQL tools for scanning.
3232
- name: Initialize CodeQL

.github/workflows/pr-build.yml

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

1010
jobs:
1111
build:
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
ref: ${{github.event.pull_request.head.ref}}
1919
repository: ${{github.event.pull_request.head.repo.full_name}}

.github/workflows/pr-test.yml

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

88
jobs:
99
test:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1313
- name: Check out code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

@@ -20,14 +20,6 @@ jobs:
2020
with:
2121
args: build jacocoTestReport
2222

23-
- name: Upload coverage to Codecov
24-
uses: codecov/codecov-action@v4
25-
with:
26-
name: unit test reports
27-
fail_ci_if_error: true
28-
flags: unit
29-
token: ${{ secrets.CODECOV_TOKEN }}
30-
3123
- name: copy test reports
3224
uses: hypertrace/github-actions/gradle@main
3325
with:
@@ -48,8 +40,10 @@ jobs:
4840
files: ./**/build/test-results/**/*.xml
4941

5042
dependency-check:
51-
runs-on: ubuntu-22.04
43+
runs-on: ubuntu-24.04
5244
steps:
5345
- name: Dependency Check
5446
uses: hypertrace/github-actions/dependency-check@main
47+
with:
48+
nvd-api-key: ${{ secrets.NVD_API_KEY }}
5549

.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.5" apply false
8-
id("org.hypertrace.jacoco-report-plugin") version "0.2.1" apply false
9-
id("org.hypertrace.code-style-plugin") version "2.0.0" 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.0" 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.

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(":grpc-client-utils")

0 commit comments

Comments
 (0)