[repo] Pin Ubuntu to 22.04 (#6036)

This commit is contained in:
Piotr Kiełkowicz 2024-12-17 19:30:14 +01:00 committed by GitHub
parent e0a10f7890
commit c3bb89ae50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 21 additions and 21 deletions

View File

@ -20,7 +20,7 @@ on:
required: false
type: string
os-list:
default: '[ "windows-latest", "ubuntu-latest", "otel-linux-arm64" ]'
default: '[ "windows-latest", "ubuntu-22.04", "otel-linux-arm64" ]'
required: false
type: string
tfm-list:
@ -37,7 +37,7 @@ jobs:
os: ${{ fromJSON(inputs.os-list) }}
version: ${{ fromJSON(inputs.tfm-list) }}
exclude:
- os: ubuntu-latest
- os: ubuntu-22.04
version: net462
- os: otel-linux-arm64
version: net462

View File

@ -14,7 +14,7 @@ jobs:
add-labels-on-issues:
if: github.event_name == 'issues' && !github.event.issue.pull_request
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: check out code
@ -35,7 +35,7 @@ jobs:
add-labels-on-pull-requests:
if: github.event_name == 'pull_request_target'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: check out code

View File

@ -18,7 +18,7 @@ on:
jobs:
resolve-automation:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
enabled: ${{ steps.evaluate.outputs.enabled }}

View File

@ -107,7 +107,7 @@ jobs:
|| contains(needs.detect-changes.outputs.changes, 'otlp')
|| contains(needs.detect-changes.outputs.changes, 'build')
|| contains(needs.detect-changes.outputs.changes, 'shared')
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
@ -125,7 +125,7 @@ jobs:
|| contains(needs.detect-changes.outputs.changes, 'instrumentation')
|| contains(needs.detect-changes.outputs.changes, 'build')
|| contains(needs.detect-changes.outputs.changes, 'shared')
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
@ -187,7 +187,7 @@ jobs:
concurrency-tests
]
if: always() && !cancelled()
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- run: |
if ( ${{ contains(needs.*.result, 'failure') }} == true ); then echo 'build failed'; exit 1; else echo 'build complete'; fi

View File

@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
matrix:
os: [ windows-latest, ubuntu-latest ]
os: [ windows-latest, ubuntu-22.04 ]
version: [ net8.0 ]
project: [ OpenTelemetry.Tests, OpenTelemetry.Api.Tests ]

View File

@ -7,7 +7,7 @@ on:
jobs:
run-markdownlint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: check out code

View File

@ -22,7 +22,7 @@ jobs:
secrets: inherit
push-packages-and-publish-release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: automation
@ -62,7 +62,7 @@ jobs:
-pushToNuget '${{ secrets.NUGET_TOKEN != '' }}'
post-release-published:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- automation

View File

@ -29,7 +29,7 @@ jobs:
secrets: inherit
prepare-release-pr:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: automation
@ -59,7 +59,7 @@ jobs:
-gitUserEmail '${{ needs.automation.outputs.email }}'
lock-pr-and-post-notice-to-create-release-tag:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: automation
@ -91,7 +91,7 @@ jobs:
-botUserName '${{ needs.automation.outputs.username }}'
create-release-tag-pr-post-notice:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: automation
@ -130,7 +130,7 @@ jobs:
-gitUserEmail '${{ needs.automation.outputs.email }}'
update-changelog-release-dates-on-prepare-pr-post-notice:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: automation

View File

@ -91,7 +91,7 @@ jobs:
nuget push src/**/*.nupkg -Source https://www.myget.org/F/opentelemetry/api/v2/package
post-build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- automation

View File

@ -7,7 +7,7 @@ on:
jobs:
run-misspell:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: check out code
@ -22,7 +22,7 @@ jobs:
run: ./bin/misspell -error .
run-sanitycheck:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: check out code

View File

@ -8,7 +8,7 @@ on:
jobs:
stale:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/stale@v9
with:

View File

@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
matrix:
os: [ ubuntu-latest, windows-latest ]
os: [ ubuntu-22.04, windows-latest ]
version: [ net8.0, net9.0 ]
runs-on: ${{ matrix.os }}