Skip to content

Commit a6f0c90

Browse files
committed
use ubuntu-24.04
1 parent 6f7e52f commit a6f0c90

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

.github/workflows/_build.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
1313
matrix:
14-
os: [windows-latest, ubuntu-latest, macos-15]
14+
os: [windows-latest, ubuntu-24.04, macos-15]
1515

1616
runs-on: ${{ matrix.os }}
1717
steps:

.github/workflows/_docker_manifests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
manifest:
1616
name: ${{ matrix.dockerDistro }} - net${{ matrix.dotnetVersion }}
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
strategy:
1919
fail-fast: false
2020
matrix:

.github/workflows/_prepare.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [windows-latest, ubuntu-latest, macos-15]
16+
os: [windows-latest, ubuntu-24.04, macos-15]
1717

1818
runs-on: ${{ matrix.os }}
1919
steps:
@@ -49,7 +49,7 @@ jobs:
4949
set_matrix:
5050
needs: [ prepare ]
5151
name: Set Matrix
52-
runs-on: ubuntu-latest
52+
runs-on: ubuntu-24.04
5353
outputs:
5454
dockerDistros: ${{ steps.set_matrix.outputs.dockerDistros }}
5555
dotnetVersions: ${{ steps.set_matrix.outputs.dotnetVersions }}

.github/workflows/_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [windows-latest, ubuntu-latest, macos-15]
19+
os: [windows-latest, ubuntu-24.04, macos-15]
2020
dotnetVersion: ${{ fromJson(inputs.dotnetVersions) }}
2121

2222
runs-on: ${{ matrix.os }}

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ jobs:
7070
matrix:
7171
include:
7272
- arch: amd64
73-
runner: ubuntu-latest
73+
runner: ubuntu-24.04
7474
- arch: arm64
75-
runner: ubuntu-latest
75+
runner: ubuntu-24.04
7676
uses: ./.github/workflows/_artifacts_linux.yml
7777
with:
7878
runner: ${{ matrix.runner }}
@@ -88,9 +88,9 @@ jobs:
8888
matrix:
8989
include:
9090
- arch: amd64
91-
runner: ubuntu-latest
91+
runner: ubuntu-24.04
9292
- arch: arm64
93-
runner: ubuntu-latest
93+
runner: ubuntu-24.04
9494

9595
uses: ./.github/workflows/_docker.yml
9696
with:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
contents: read # for actions/checkout to fetch code
4040
security-events: write # for github/codeql-action/analyze to upload SARIF results
4141
name: Analyze
42-
runs-on: ubuntu-latest
42+
runs-on: ubuntu-24.04
4343

4444
strategy:
4545
fail-fast: false

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ env:
3333
jobs:
3434
prepare:
3535
name: Prepare Build
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-24.04
3737

3838
steps:
3939
-
@@ -87,7 +87,7 @@ jobs:
8787
validate:
8888
name: Validates Html
8989
needs: [ prepare ]
90-
runs-on: ubuntu-latest
90+
runs-on: ubuntu-24.04
9191
steps:
9292
-
9393
name: Checkout
@@ -123,7 +123,7 @@ jobs:
123123
publish:
124124
name: Publish docs
125125
needs: [ validate ]
126-
runs-on: ubuntu-latest
126+
runs-on: ubuntu-24.04
127127
env:
128128
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
129129
GITHUB_USERNAME: ${{ github.actor }}

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ env:
3434

3535
jobs:
3636
format:
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-24.04
3838
name: DotNet Format
3939
steps:
4040
-

.github/workflows/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defaults:
1515
jobs:
1616
docs:
1717
name: Update Markdown (embedded snippets)
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
steps:
2020
-
2121
name: Checkout

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
release:
88
name: Trigger ci flow
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
-
1212
name: Checkout

0 commit comments

Comments
 (0)