77
88 Version-Check :
99 name : Version
10- runs-on : ubuntu-latest
10+ runs-on : ubuntu-24.04
1111
1212 steps :
1313 - name : SCM Checkout
2424 Documentation :
2525 name : Docs
2626 needs : [ Version-Check ]
27- runs-on : ubuntu-latest
27+ runs-on : ubuntu-24.04
2828
2929 steps :
3030 - name : SCM Checkout
3939
4040 Changelog :
4141 name : Changelog Update Check
42- runs-on : ubuntu-latest
42+ runs-on : ubuntu-24.04
4343
4444 steps :
4545 - name : SCM Checkout
6363 Lint :
6464 name : Linting (Python-${{ matrix.python-version }})
6565 needs : [ Version-Check, build-matrix ]
66- runs-on : ubuntu-latest
66+ runs-on : ubuntu-24.04
6767 strategy :
6868 fail-fast : false
6969 matrix : ${{ fromJson(needs.build-matrix.outputs.matrix) }}
9292 Type-Check :
9393 name : Type Checking (Python-${{ matrix.python-version }})
9494 needs : [ Version-Check, build-matrix ]
95- runs-on : ubuntu-latest
95+ runs-on : ubuntu-24.04
9696 strategy :
9797 fail-fast : false
9898 matrix : ${{ fromJson(needs.build-matrix.outputs.matrix) }}
@@ -112,7 +112,7 @@ jobs:
112112 Security :
113113 name : Security Checks (Python-${{ matrix.python-version }})
114114 needs : [ Version-Check, build-matrix ]
115- runs-on : ubuntu-latest
115+ runs-on : ubuntu-24.04
116116 strategy :
117117 fail-fast : false
118118 matrix : ${{ fromJson(needs.build-matrix.outputs.matrix) }}
@@ -139,7 +139,7 @@ jobs:
139139 Vulnerabilities :
140140 name : Check Vulnerabilities (Python-${{ matrix.python-version }})
141141 needs : [ Version-Check, build-matrix ]
142- runs-on : ubuntu-latest
142+ runs-on : ubuntu-24.04
143143 strategy :
144144 matrix : ${{ fromJson(needs.build-matrix.outputs.matrix) }}
145145
@@ -157,7 +157,7 @@ jobs:
157157
158158 Format :
159159 name : Format Check
160- runs-on : ubuntu-latest
160+ runs-on : ubuntu-24.04
161161
162162 steps :
163163 - name : SCM Checkout
@@ -174,7 +174,7 @@ jobs:
174174 Tests :
175175 name : Unit-Tests (Python-${{ matrix.python-version }})
176176 needs : [ Documentation, Lint, Type-Check, Security, Format, build-matrix ]
177- runs-on : ubuntu-latest
177+ runs-on : ubuntu-24.04
178178 env :
179179 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
180180 strategy :
0 commit comments