|
50 | 50 | jobs: |
51 | 51 | # Run 'dist plan' (or host) to determine what tasks we need to do |
52 | 52 | plan: |
53 | | - runs-on: "ubuntu-20.04" |
| 53 | + runs-on: "ubuntu-latest" |
54 | 54 | outputs: |
55 | 55 | val: ${{ steps.plan.outputs.manifest }} |
56 | 56 | tag: ${{ !github.event.pull_request && github.ref_name || '' }} |
@@ -176,7 +176,7 @@ jobs: |
176 | 176 | needs: |
177 | 177 | - plan |
178 | 178 | - build-local-artifacts |
179 | | - runs-on: "ubuntu-20.04" |
| 179 | + runs-on: "ubuntu-latest" |
180 | 180 | env: |
181 | 181 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
182 | 182 | BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json |
@@ -236,7 +236,7 @@ jobs: |
236 | 236 | env: |
237 | 237 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
238 | 238 | AXO_RELEASES_TOKEN: ${{ secrets.AXO_RELEASES_TOKEN }} |
239 | | - runs-on: "ubuntu-20.04" |
| 239 | + runs-on: "ubuntu-latest" |
240 | 240 | outputs: |
241 | 241 | val: ${{ steps.host.outputs.manifest }} |
242 | 242 | steps: |
@@ -276,7 +276,7 @@ jobs: |
276 | 276 | needs: |
277 | 277 | - plan |
278 | 278 | - host |
279 | | - runs-on: "ubuntu-20.04" |
| 279 | + runs-on: "ubuntu-latest" |
280 | 280 | env: |
281 | 281 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
282 | 282 | PLAN: ${{ needs.plan.outputs.val }} |
@@ -321,7 +321,7 @@ jobs: |
321 | 321 | needs: |
322 | 322 | - plan |
323 | 323 | - host |
324 | | - runs-on: "ubuntu-20.04" |
| 324 | + runs-on: "ubuntu-latest" |
325 | 325 | env: |
326 | 326 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
327 | 327 | PLAN: ${{ needs.plan.outputs.val }} |
@@ -372,7 +372,7 @@ jobs: |
372 | 372 | # still allowing individual publish jobs to skip themselves (for prereleases). |
373 | 373 | # "host" however must run to completion, no skipping allowed! |
374 | 374 | if: ${{ always() && needs.host.result == 'success' && (needs.publish-homebrew-formula.result == 'skipped' || needs.publish-homebrew-formula.result == 'success') && (needs.publish-npm.result == 'skipped' || needs.publish-npm.result == 'success') && (needs.custom-publish-crates.result == 'skipped' || needs.custom-publish-crates.result == 'success') }} |
375 | | - runs-on: "ubuntu-20.04" |
| 375 | + runs-on: "ubuntu-latest" |
376 | 376 | env: |
377 | 377 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
378 | 378 | AXO_RELEASES_TOKEN: ${{ secrets.AXO_RELEASES_TOKEN }} |
|
0 commit comments