|
47 | 47 | jobs: |
48 | 48 | # Run 'dist plan' (or host) to determine what tasks we need to do |
49 | 49 | plan: |
50 | | - runs-on: "ubuntu-20.04" |
| 50 | + runs-on: "ubuntu-latest" |
51 | 51 | outputs: |
52 | 52 | val: ${{ steps.plan.outputs.manifest }} |
53 | 53 | tag: ${{ !github.event.pull_request && github.ref_name || '' }} |
@@ -170,7 +170,7 @@ jobs: |
170 | 170 | needs: |
171 | 171 | - plan |
172 | 172 | - build-local-artifacts |
173 | | - runs-on: "ubuntu-20.04" |
| 173 | + runs-on: "ubuntu-latest" |
174 | 174 | env: |
175 | 175 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
176 | 176 | BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json |
@@ -220,7 +220,7 @@ jobs: |
220 | 220 | if: ${{ always() && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }} |
221 | 221 | env: |
222 | 222 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
223 | | - runs-on: "ubuntu-20.04" |
| 223 | + runs-on: "ubuntu-latest" |
224 | 224 | outputs: |
225 | 225 | val: ${{ steps.host.outputs.manifest }} |
226 | 226 | steps: |
@@ -280,7 +280,7 @@ jobs: |
280 | 280 | needs: |
281 | 281 | - plan |
282 | 282 | - host |
283 | | - runs-on: "ubuntu-20.04" |
| 283 | + runs-on: "ubuntu-latest" |
284 | 284 | env: |
285 | 285 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
286 | 286 | PLAN: ${{ needs.plan.outputs.val }} |
@@ -330,7 +330,7 @@ jobs: |
330 | 330 | # still allowing individual publish jobs to skip themselves (for prereleases). |
331 | 331 | # "host" however must run to completion, no skipping allowed! |
332 | 332 | if: ${{ always() && needs.host.result == 'success' && (needs.publish-homebrew-formula.result == 'skipped' || needs.publish-homebrew-formula.result == 'success') }} |
333 | | - runs-on: "ubuntu-20.04" |
| 333 | + runs-on: "ubuntu-latest" |
334 | 334 | env: |
335 | 335 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
336 | 336 | steps: |
|
0 commit comments