16
16
17
17
jobs :
18
18
pre_build :
19
- runs-on : ubuntu-22 .04
19
+ runs-on : ubuntu-24 .04
20
20
outputs :
21
21
version : ${{ steps.version.outputs.version }}
22
22
version3 : ${{ steps.version.outputs.version3 }}
73
73
build_core_and_testing :
74
74
if : github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
75
75
needs : pre_build
76
- runs-on : ubuntu-22 .04
76
+ runs-on : ubuntu-24 .04
77
77
env :
78
78
Version : ${{ needs.pre_build.outputs.version }}
79
79
defaults :
92
92
build_analyzers :
93
93
if : github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
94
94
needs : pre_build
95
- runs-on : ubuntu-22 .04
95
+ runs-on : ubuntu-24 .04
96
96
env :
97
97
Version : ${{ needs.pre_build.outputs.version }}
98
98
strategy :
@@ -125,7 +125,7 @@ jobs:
125
125
build_refactorings :
126
126
if : github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
127
127
needs : pre_build
128
- runs-on : ubuntu-22 .04
128
+ runs-on : ubuntu-24 .04
129
129
env :
130
130
Version : ${{ needs.pre_build.outputs.version }}
131
131
defaults :
@@ -146,7 +146,7 @@ jobs:
146
146
build_code_fixes :
147
147
if : github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
148
148
needs : pre_build
149
- runs-on : ubuntu-22 .04
149
+ runs-on : ubuntu-24 .04
150
150
env :
151
151
Version : ${{ needs.pre_build.outputs.version }}
152
152
defaults :
@@ -201,7 +201,7 @@ jobs:
201
201
build_vs_code_extension :
202
202
if : github.ref_type != 'tag' || startsWith(github.ref_name, 'v')
203
203
needs : [ pre_build, build_analyzers ]
204
- runs-on : ubuntu-22 .04
204
+ runs-on : ubuntu-24 .04
205
205
env :
206
206
Version : ${{ needs.pre_build.outputs.version }}
207
207
defaults :
@@ -251,7 +251,7 @@ jobs:
251
251
build_core_cli :
252
252
if : github.ref_type != 'tag' || startsWith(github.ref_name, 'cli-v')
253
253
needs : pre_build
254
- runs-on : ubuntu-22 .04
254
+ runs-on : ubuntu-24 .04
255
255
env :
256
256
RoslynatorDotNetCli : true
257
257
RoslynatorCliVersion : ${{ needs.pre_build.outputs.cliVersion }}
@@ -293,7 +293,7 @@ jobs:
293
293
294
294
publish_nuget_packages :
295
295
needs : [ build_core_and_testing, build_analyzers, build_refactorings, build_code_fixes ]
296
- runs-on : ubuntu-22 .04
296
+ runs-on : ubuntu-24 .04
297
297
if : github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
298
298
steps :
299
299
- uses : actions/download-artifact@v4
@@ -306,7 +306,7 @@ jobs:
306
306
307
307
publish_cli_nuget_packages :
308
308
needs : [ build_core_cli, build_framework_cli ]
309
- runs-on : ubuntu-22 .04
309
+ runs-on : ubuntu-24 .04
310
310
if : github.ref_type == 'tag' && startsWith(github.ref_name, 'cli-v')
311
311
steps :
312
312
- uses : actions/download-artifact@v4
@@ -319,7 +319,7 @@ jobs:
319
319
320
320
publish_vs_code_extension :
321
321
needs : [ pre_build, build_vs_extension ]
322
- runs-on : ubuntu-22 .04
322
+ runs-on : ubuntu-24 .04
323
323
if : github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
324
324
steps :
325
325
- uses : actions/download-artifact@v4
@@ -332,7 +332,7 @@ jobs:
332
332
333
333
publish_ovsx_extension :
334
334
needs : [ pre_build, build_vs_code_extension ]
335
- runs-on : ubuntu-22 .04
335
+ runs-on : ubuntu-24 .04
336
336
if : github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
337
337
steps :
338
338
- uses : actions/download-artifact@v4
0 commit comments