File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ concurrency:
33
33
jobs :
34
34
assemble :
35
35
name : " Assemble the package distribution"
36
- runs-on : ubuntu-20.04
36
+ runs-on : ubuntu-latest
37
37
steps :
38
38
- uses : actions/checkout@v4
39
39
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ concurrency:
26
26
jobs :
27
27
detect-changes :
28
28
name : " Detect affected packages"
29
- runs-on : ubuntu-20.04
29
+ runs-on : ubuntu-latest
30
30
if : ${{ !contains( github.event.pull_request.labels.*.name, 'skip tests') }}
31
31
outputs :
32
32
modified : ${{ steps.modified.outputs.modified }}
@@ -102,7 +102,7 @@ jobs:
102
102
103
103
status-comment :
104
104
name : " Create or update PR comment"
105
- runs-on : ubuntu-20.04
105
+ runs-on : ubuntu-latest
106
106
needs : test-all-master # TODO: also handle test-all-release
107
107
if : always()
108
108
steps :
Original file line number Diff line number Diff line change 24
24
jobs :
25
25
scan-for-updates :
26
26
name : " Scan for package updates"
27
- runs-on : ubuntu-20.04
27
+ runs-on : ubuntu-latest
28
28
outputs :
29
29
matrix : ${{ steps.get-names.outputs.matrix }}
30
30
steps :
@@ -113,7 +113,7 @@ jobs:
113
113
name : " Create pull request for ${{ matrix.package_or_group }}"
114
114
if : ${{ needs.scan-for-updates.outputs.matrix != '{"package_or_group":[]}' }}
115
115
needs : scan-for-updates
116
- runs-on : ubuntu-20.04
116
+ runs-on : ubuntu-latest
117
117
strategy :
118
118
fail-fast : false
119
119
matrix : ${{ fromJSON(needs.scan-for-updates.outputs.matrix) }}
Original file line number Diff line number Diff line change 69
69
# If you change this name, you must adjust the corresponding name
70
70
# in tools/generate_test_status.py
71
71
name : " Build GAP and packages"
72
- runs-on : ubuntu-20.04
72
+ runs-on : ubuntu-latest
73
73
outputs :
74
74
matrix : ${{ steps.get-names.outputs.matrix }}
75
75
artifact : ${{ steps.get-artifact-name.outputs.artifact }}
@@ -247,7 +247,7 @@ jobs:
247
247
name : " ${{ matrix.package }}"
248
248
if : ${{ needs.build.outputs.matrix != '{"package":[]}' }}
249
249
needs : build
250
- runs-on : ubuntu-20.04
250
+ runs-on : ubuntu-latest
251
251
strategy :
252
252
fail-fast : false
253
253
matrix : ${{ fromJSON(needs.build.outputs.matrix) }}
@@ -355,7 +355,7 @@ jobs:
355
355
name : " Generate report"
356
356
needs : [build, test-package]
357
357
if : always()
358
- runs-on : ubuntu-20.04
358
+ runs-on : ubuntu-latest
359
359
outputs :
360
360
test-status : ${{ steps.test-status.outputs.test-status }}
361
361
steps :
Original file line number Diff line number Diff line change 20
20
jobs :
21
21
py311 :
22
22
name : " Run tests"
23
- runs-on : ubuntu-20.04
23
+ runs-on : ubuntu-latest
24
24
steps :
25
25
- uses : actions/checkout@v4
26
26
Original file line number Diff line number Diff line change 28
28
jobs :
29
29
update-latest :
30
30
name : " Upload report"
31
- runs-on : ubuntu-20.04
31
+ runs-on : ubuntu-latest
32
32
steps :
33
33
- name : " Set up Python"
34
34
uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments