Skip to content

Commit 937ccf4

Browse files
authored
Merge branch 'main' into users/dulikvor/markinstrumentation
2 parents 0d24004 + 7d7d37a commit 937ccf4

File tree

21 files changed

+318
-362
lines changed

21 files changed

+318
-362
lines changed

.github/workflows/Component.BuildTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
required: false
2121
type: string
2222
os-list:
23-
default: '[ "windows-latest", "ubuntu-latest", "otel-linux-arm64" ]'
23+
default: '[ "windows-latest", "ubuntu-22.04", "otel-linux-arm64" ]'
2424
required: false
2525
type: string
2626
tfm-list:
@@ -37,7 +37,7 @@ jobs:
3737
os: ${{ fromJSON(inputs.os-list) }}
3838
version: ${{ fromJSON(inputs.tfm-list) }}
3939
exclude:
40-
- os: ubuntu-latest
40+
- os: ubuntu-22.04
4141
version: net462
4242
- os: otel-linux-arm64
4343
version: net462

.github/workflows/add-labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
add-labels-on-issues:
1515
if: github.event_name == 'issues' && !github.event.issue.pull_request
1616

17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- name: check out code
@@ -35,7 +35,7 @@ jobs:
3535
add-labels-on-pull-requests:
3636
if: github.event_name == 'pull_request_target'
3737

38-
runs-on: ubuntu-latest
38+
runs-on: ubuntu-22.04
3939

4040
steps:
4141
- name: check out code

.github/workflows/automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
resolve-automation:
2020

21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222

2323
outputs:
2424
enabled: ${{ steps.evaluate.outputs.enabled }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
|| contains(needs.detect-changes.outputs.changes, 'otlp')
108108
|| contains(needs.detect-changes.outputs.changes, 'build')
109109
|| contains(needs.detect-changes.outputs.changes, 'shared')
110-
runs-on: ubuntu-latest
110+
runs-on: ubuntu-22.04
111111
strategy:
112112
fail-fast: false
113113
matrix:
@@ -125,7 +125,7 @@ jobs:
125125
|| contains(needs.detect-changes.outputs.changes, 'instrumentation')
126126
|| contains(needs.detect-changes.outputs.changes, 'build')
127127
|| contains(needs.detect-changes.outputs.changes, 'shared')
128-
runs-on: ubuntu-latest
128+
runs-on: ubuntu-22.04
129129
strategy:
130130
fail-fast: false
131131
matrix:
@@ -187,7 +187,7 @@ jobs:
187187
concurrency-tests
188188
]
189189
if: always() && !cancelled()
190-
runs-on: ubuntu-latest
190+
runs-on: ubuntu-22.04
191191
steps:
192192
- run: |
193193
if ( ${{ contains(needs.*.result, 'failure') }} == true ); then echo 'build failed'; exit 1; else echo 'build complete'; fi

.github/workflows/concurrency-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
1313
matrix:
14-
os: [ windows-latest, ubuntu-latest ]
14+
os: [ windows-latest, ubuntu-22.04 ]
1515
version: [ net8.0 ]
1616
project: [ OpenTelemetry.Tests, OpenTelemetry.Api.Tests ]
1717

.github/workflows/markdownlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
run-markdownlint:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
- name: check out code

.github/workflows/post-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
secrets: inherit
2323

2424
push-packages-and-publish-release:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626

2727
needs: automation
2828

@@ -62,7 +62,7 @@ jobs:
6262
-pushToNuget '${{ secrets.NUGET_TOKEN != '' }}'
6363
6464
post-release-published:
65-
runs-on: ubuntu-latest
65+
runs-on: ubuntu-22.04
6666

6767
needs:
6868
- automation

.github/workflows/prepare-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
secrets: inherit
3030

3131
prepare-release-pr:
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-22.04
3333

3434
needs: automation
3535

@@ -59,7 +59,7 @@ jobs:
5959
-gitUserEmail '${{ needs.automation.outputs.email }}'
6060
6161
lock-pr-and-post-notice-to-create-release-tag:
62-
runs-on: ubuntu-latest
62+
runs-on: ubuntu-22.04
6363

6464
needs: automation
6565

@@ -91,7 +91,7 @@ jobs:
9191
-botUserName '${{ needs.automation.outputs.username }}'
9292
9393
create-release-tag-pr-post-notice:
94-
runs-on: ubuntu-latest
94+
runs-on: ubuntu-22.04
9595

9696
needs: automation
9797

@@ -130,7 +130,7 @@ jobs:
130130
-gitUserEmail '${{ needs.automation.outputs.email }}'
131131
132132
update-changelog-release-dates-on-prepare-pr-post-notice:
133-
runs-on: ubuntu-latest
133+
runs-on: ubuntu-22.04
134134

135135
needs: automation
136136

.github/workflows/publish-packages-1.0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
nuget push src/**/*.nupkg -Source https://www.myget.org/F/opentelemetry/api/v2/package
9292
9393
post-build:
94-
runs-on: ubuntu-latest
94+
runs-on: ubuntu-22.04
9595

9696
needs:
9797
- automation

.github/workflows/sanitycheck.yml

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

88
jobs:
99
run-misspell:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
- name: check out code
@@ -22,7 +22,7 @@ jobs:
2222
run: ./bin/misspell -error .
2323

2424
run-sanitycheck:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626

2727
steps:
2828
- name: check out code

0 commit comments

Comments
 (0)