Skip to content

Commit c37e24e

Browse files
authored
Use Ubuntu 24.04 (#1561)
1 parent 4be87c4 commit c37e24e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
pre_build:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
outputs:
2121
version: ${{ steps.version.outputs.version }}
2222
version3: ${{ steps.version.outputs.version3 }}
@@ -73,7 +73,7 @@ jobs:
7373
build_core_and_testing:
7474
if: github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
7575
needs: pre_build
76-
runs-on: ubuntu-22.04
76+
runs-on: ubuntu-24.04
7777
env:
7878
Version: ${{ needs.pre_build.outputs.version }}
7979
defaults:
@@ -92,7 +92,7 @@ jobs:
9292
build_analyzers:
9393
if: github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
9494
needs: pre_build
95-
runs-on: ubuntu-22.04
95+
runs-on: ubuntu-24.04
9696
env:
9797
Version: ${{ needs.pre_build.outputs.version }}
9898
strategy:
@@ -125,7 +125,7 @@ jobs:
125125
build_refactorings:
126126
if: github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
127127
needs: pre_build
128-
runs-on: ubuntu-22.04
128+
runs-on: ubuntu-24.04
129129
env:
130130
Version: ${{ needs.pre_build.outputs.version }}
131131
defaults:
@@ -146,7 +146,7 @@ jobs:
146146
build_code_fixes:
147147
if: github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
148148
needs: pre_build
149-
runs-on: ubuntu-22.04
149+
runs-on: ubuntu-24.04
150150
env:
151151
Version: ${{ needs.pre_build.outputs.version }}
152152
defaults:
@@ -201,7 +201,7 @@ jobs:
201201
build_vs_code_extension:
202202
if: github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
203203
needs: [ pre_build, build_analyzers ]
204-
runs-on: ubuntu-22.04
204+
runs-on: ubuntu-24.04
205205
env:
206206
Version: ${{ needs.pre_build.outputs.version }}
207207
defaults:
@@ -251,7 +251,7 @@ jobs:
251251
build_core_cli:
252252
if: github.ref_type != 'tag' || startsWith(github.ref_name, 'cli-v')
253253
needs: pre_build
254-
runs-on: ubuntu-22.04
254+
runs-on: ubuntu-24.04
255255
env:
256256
RoslynatorDotNetCli: true
257257
RoslynatorCliVersion: ${{ needs.pre_build.outputs.cliVersion }}
@@ -293,7 +293,7 @@ jobs:
293293

294294
publish_nuget_packages:
295295
needs: [ build_core_and_testing, build_analyzers, build_refactorings, build_code_fixes ]
296-
runs-on: ubuntu-22.04
296+
runs-on: ubuntu-24.04
297297
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
298298
steps:
299299
- uses: actions/download-artifact@v4
@@ -306,7 +306,7 @@ jobs:
306306

307307
publish_cli_nuget_packages:
308308
needs: [ build_core_cli, build_framework_cli ]
309-
runs-on: ubuntu-22.04
309+
runs-on: ubuntu-24.04
310310
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'cli-v')
311311
steps:
312312
- uses: actions/download-artifact@v4
@@ -319,7 +319,7 @@ jobs:
319319

320320
publish_vs_code_extension:
321321
needs: [ pre_build, build_vs_extension ]
322-
runs-on: ubuntu-22.04
322+
runs-on: ubuntu-24.04
323323
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
324324
steps:
325325
- uses: actions/download-artifact@v4
@@ -332,7 +332,7 @@ jobs:
332332

333333
publish_ovsx_extension:
334334
needs: [ pre_build, build_vs_code_extension ]
335-
runs-on: ubuntu-22.04
335+
runs-on: ubuntu-24.04
336336
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
337337
steps:
338338
- uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)