Skip to content

Commit 6a74905

Browse files
Merge branch 'main' of github.com:ghareeb-falazi/opentelemetry-java-instrumentation
2 parents a35cf9e + 716ae50 commit 6a74905

File tree

98 files changed

+1652
-364
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+1652
-364
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
#
22
# Learn about membership in OpenTelemetry community:
33
# https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md
4-
#
5-
#
6-
# Learn about CODEOWNERS file format:
7-
# https://help.github.com/en/articles/about-code-owners
84
#
95

106
* @open-telemetry/java-instrumentation-approvers

.github/config/lychee.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Lychee configuration file
2+
# See https://lychee.cli.rs/config/
3+
14
timeout = 30
25
retry_wait_time = 5
36
max_retries = 6

.github/renovate.json5

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,16 @@
159159
'com.github.tomakehurst:wiremock-jre8'
160160
],
161161
},
162+
{
163+
// vaadin 14 tests require node 16
164+
matchPackageNames: [
165+
'actions/node-versions',
166+
],
167+
matchUpdateTypes: [
168+
'major',
169+
],
170+
enabled: false,
171+
},
162172
{
163173
// intentionally using Spring Boot 2 in this smoke tests
164174
// new versions of Spring Boot 3 are tested with

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
cache-read-only: ${{ github.event_name == 'pull_request' }}
6464

6565
- name: Initialize CodeQL
66-
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
66+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
6767
with:
6868
languages: ${{ matrix.language }}
6969
# using "linked" helps to keep up with the linked Kotlin support
@@ -84,6 +84,6 @@ jobs:
8484
--no-build-cache --no-daemon
8585
8686
- name: Perform CodeQL analysis
87-
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
87+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
8888
with:
8989
category: "/language:${{matrix.language}}"

.github/workflows/ossf-scorecard.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
- cron: "43 6 * * 5" # weekly at 06:43 (UTC) on Friday
99
workflow_dispatch:
1010

11-
permissions: read-all
11+
permissions:
12+
contents: read
1213

1314
jobs:
1415
analysis:
@@ -42,6 +43,6 @@ jobs:
4243
# Upload the results to GitHub's code scanning dashboard (optional).
4344
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4445
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
46+
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4647
with:
4748
sarif_file: results.sarif

.github/workflows/owasp-dependency-check-daily.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ name: OWASP dependency check (daily)
44

55
on:
66
schedule:
7-
# daily at 1:30 UTC
8-
- cron: "30 1 * * *"
7+
- cron: "30 1 * * *" # daily at 1:30 UTC
98
workflow_dispatch:
109

1110
permissions:

.github/workflows/reusable-link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
fetch-depth: 0 # needed for merge-base used in lint:links-in-modified-files
1616

17-
- uses: jdx/mise-action@e3d7b8d67a7958d1207f6ed871e83b1ea780e7b0 # v3.3.1
17+
- uses: jdx/mise-action@be3be2260bc02bc3fbf94c5e2fed8b7964baf074 # v3.4.0
1818

1919
- name: Link check - relative links (all files)
2020
if: github.event_name == 'pull_request'

benchmark-overhead/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ repositories {
1616
}
1717

1818
dependencies {
19-
implementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
19+
implementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))
2020

2121
testImplementation(platform("org.testcontainers:testcontainers-bom:2.0.1"))
2222
testImplementation("org.testcontainers:testcontainers:2.0.1")
2323
testImplementation("org.testcontainers:testcontainers-postgresql")
2424
testImplementation("org.junit.jupiter:junit-jupiter-api")
2525
testImplementation("org.junit.jupiter:junit-jupiter-params")
26-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
26+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
2727
testImplementation("org.jooq:joox:2.0.1")
28-
testImplementation("com.jayway.jsonpath:json-path:2.9.0")
28+
testImplementation("com.jayway.jsonpath:json-path:2.10.0")
2929
testImplementation("org.slf4j:slf4j-simple:2.0.17")
3030

3131
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")

build.gradle.kts

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

2323
buildscript {
2424
dependencies {
25-
classpath("com.squareup.okhttp3:okhttp:5.2.1")
25+
classpath("com.squareup.okhttp3:okhttp:5.3.0")
2626
}
2727
}
2828

conventions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dependencies {
7070
implementation("net.ltgt.gradle:gradle-nullaway-plugin:2.3.0")
7171
implementation("me.champeau.gradle:japicmp-gradle-plugin:0.4.6")
7272

73-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
73+
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))
7474
testImplementation("org.junit.jupiter:junit-jupiter-api")
7575
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
7676
testImplementation("org.assertj:assertj-core:3.27.6")

0 commit comments

Comments
 (0)