Skip to content

Commit 346214d

Browse files
authored
Merge branch 'open-telemetry:main' into main
2 parents f8e6717 + 36ca9b8 commit 346214d

File tree

101 files changed

+965
-382
lines changed

Some content is hidden

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

101 files changed

+965
-382
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Code owners file.
2-
# This file controls who is tagged for review for any given pull request.
1+
#
2+
# Learn about membership in OpenTelemetry community:
3+
# https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md
4+
#
35

4-
# For anything not explicitly taken by someone else:
56
* @open-telemetry/java-approvers

.github/config/lychee.toml

Lines changed: 6 additions & 3 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
@@ -8,11 +11,11 @@ include_fragments = true
811

912
remap = [
1013
# workaround for https://github.com/lycheeverse/lychee/issues/1729
11-
'https://github.com/(.*?)/(.*?)/blob/(.*?)/(.*#.*)$ https://raw.githubusercontent.com/$1/$2/$3/$4',
14+
"https://github.com/(.*?)/(.*?)/blob/(.*?)/(.*#.*)$ https://raw.githubusercontent.com/$1/$2/$3/$4",
1215
]
1316

1417
# excluding links to pull requests and issues is done for performance
1518
exclude = [
16-
'^https://github.com/open-telemetry/opentelemetry-java/(issues|pull)/\d+$',
17-
'^https://www.javadoc.io/badge/(.*?)/(.*?).svg$', # returns 522
19+
"^https://github.com/open-telemetry/opentelemetry-java/(issues|pull)/\\d+$",
20+
"^https://www.javadoc.io/badge/(.*?)/(.*?).svg$", # returns 522
1821
]
File renamed without changes.

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fetch-depth: 0
2828

2929
- name: Use CLA approved github bot
30-
run: .github/scripts/use-cla-approved-github-bot.sh
30+
run: .github/scripts/use-cla-approved-bot.sh
3131

3232
- uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
3333
id: otelbot-token

.github/workflows/benchmark-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
3232
with:
3333
distribution: temurin
34-
java-version: 17
34+
java-version: 21
3535

3636
- name: Set up gradle
3737
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
3434
with:
3535
distribution: temurin
36-
java-version: 17
36+
java-version: 21
3737

3838
- name: Set up gradle
3939
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
@@ -48,7 +48,7 @@ jobs:
4848
java -jar libs/opentelemetry-sdk-trace-*-jmh.jar -rf json SpanBenchmark SpanPipelineBenchmark ExporterBenchmark
4949
5050
- name: Use CLA approved github bot
51-
run: .github/scripts/use-cla-approved-github-bot.sh
51+
run: .github/scripts/use-cla-approved-bot.sh
5252

5353
- name: Store benchmark results
5454
uses: benchmark-action/github-action-benchmark@4bdcce38c94cec68da58d012ac24b7b1155efe8b # v1.20.7

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
6767
with:
6868
distribution: temurin
69-
java-version: 17
69+
java-version: 21
7070

7171
- name: Set up gradle
7272
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
@@ -105,7 +105,7 @@ jobs:
105105
env:
106106
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
107107

108-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
108+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
109109
if: ${{ matrix.coverage }}
110110
with:
111111
name: coverage-report
@@ -114,7 +114,7 @@ jobs:
114114
markdown-link-check:
115115
# release branches are excluded to avoid unnecessary maintenance
116116
if: ${{ !startsWith(github.ref_name, 'release/') }}
117-
uses: ./.github/workflows/reusable-markdown-link-check.yml
117+
uses: ./.github/workflows/reusable-link-check.yml
118118

119119
misspell-check:
120120
# release branches are excluded to avoid unnecessary maintenance
@@ -143,7 +143,7 @@ jobs:
143143
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
144144
with:
145145
distribution: temurin
146-
java-version: 17
146+
java-version: 21
147147

148148
- name: Set up gradle
149149
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
@@ -173,7 +173,7 @@ jobs:
173173
- 25 # renovate: datasource=java-version
174174
steps:
175175
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
176-
- uses: graalvm/setup-graalvm@2a2412009026a83f51d179f92dc2b3fd4c8142df # v1.4.1
176+
- uses: graalvm/setup-graalvm@eec48106e0bf45f2976c2ff0c3e22395cced8243 # v1.4.2
177177
with:
178178
java-version: ${{ matrix.test-graal-version }}
179179
distribution: 'graalvm'

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535

36-
- name: Set up Java 17
36+
- name: Set up Java 21
3737
if: matrix.language == 'java'
3838
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
3939
with:
4040
distribution: temurin
41-
java-version: 17
41+
java-version: 21
4242

4343
- name: Set up gradle
4444
if: matrix.language == 'java'
4545
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
4646

4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
48+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4949
with:
5050
languages: ${{ matrix.language }}
5151
# using "linked" helps to keep up with the latest Kotlin support
@@ -62,6 +62,6 @@ jobs:
6262
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
6363

6464
- name: Perform CodeQL analysis
65-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
65+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
6666
with:
6767
category: "/language:${{matrix.language}}"

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1515

16+
# this needs to be in its own workflow in order to make OSSF scorecard happy
1617
- uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0

.github/workflows/issue-management-feedback-label.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Issue management - remove needs feedback label
1+
name: Issue management - remove labels as needed
22

33
on:
44
issue_comment:
@@ -20,9 +20,10 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222

23-
- name: Remove label
23+
- name: Remove labels
2424
env:
2525
ISSUE_NUMBER: ${{ github.event.issue.number }}
2626
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727
run: |
2828
gh issue edit --remove-label "needs author feedback" $ISSUE_NUMBER
29+
gh issue edit --remove-label "stale" $ISSUE_NUMBER

0 commit comments

Comments
 (0)