File tree Expand file tree Collapse file tree 7 files changed +21
-29
lines changed Expand file tree Collapse file tree 7 files changed +21
-29
lines changed Original file line number Diff line number Diff line change 13
13
jobs :
14
14
analyze :
15
15
name : Analyze
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04
17
17
permissions :
18
18
actions : read
19
19
contents : read
26
26
27
27
steps :
28
28
- name : Checkout repository
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
# Initializes the CodeQL tools for scanning.
32
32
- name : Initialize CodeQL
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build :
12
- runs-on : ubuntu-22 .04
12
+ runs-on : ubuntu-24 .04
13
13
steps :
14
14
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
15
15
- name : Check out code
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
with :
18
18
ref : ${{github.event.pull_request.head.ref}}
19
19
repository : ${{github.event.pull_request.head.repo.full_name}}
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
test :
10
- runs-on : ubuntu-22 .04
10
+ runs-on : ubuntu-24 .04
11
11
steps :
12
12
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
13
13
- name : Check out code
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0
17
17
20
20
with :
21
21
args : build jacocoTestReport
22
22
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
-
31
23
- name : copy test reports
32
24
uses : hypertrace/github-actions/gradle@main
33
25
with :
48
40
files : ./**/build/test-results/**/*.xml
49
41
50
42
dependency-check :
51
- runs-on : ubuntu-22 .04
43
+ runs-on : ubuntu-24 .04
52
44
steps :
53
45
- name : Dependency Check
54
46
uses : hypertrace/github-actions/dependency-check@main
47
+ with :
48
+ nvd-api-key : ${{ secrets.NVD_API_KEY }}
55
49
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
publish-artifacts :
11
- runs-on : ubuntu-22 .04
11
+ runs-on : ubuntu-24 .04
12
12
steps :
13
13
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
14
14
- name : Check out code
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
18
21
21
with :
22
22
args : publish
23
23
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 }}
27
27
28
28
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
2
2
import org.hypertrace.gradle.publishing.License
3
3
4
4
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
10
10
id(" org.owasp.dependencycheck" ) version " 12.1.0"
11
11
}
12
12
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ pluginManagement {
4
4
repositories {
5
5
mavenLocal()
6
6
gradlePluginPortal()
7
- maven(" https://hypertrace.jfrog.io/artifactory /maven" )
7
+ maven(" https://us-maven.pkg.dev/hypertrace-repos /maven" )
8
8
}
9
9
}
10
10
11
11
plugins {
12
- id(" org.hypertrace.version-settings" ) version " 0.2 .0"
12
+ id(" org.hypertrace.version-settings" ) version " 0.3 .0"
13
13
}
14
14
15
15
include(" :grpc-client-utils" )
You can’t perform that action at this time.
0 commit comments