File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 47
47
jobs :
48
48
# Run 'cargo 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 || '' }}
@@ -160,7 +160,7 @@ jobs:
160
160
needs :
161
161
- plan
162
162
- build-local-artifacts
163
- runs-on : " ubuntu-20.04 "
163
+ runs-on : ubuntu-latest
164
164
env :
165
165
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
166
166
BUILD_MANIFEST_NAME : target/distrib/global-dist-manifest.json
@@ -210,7 +210,7 @@ jobs:
210
210
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') }}
211
211
env :
212
212
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
213
- runs-on : " ubuntu-20.04 "
213
+ runs-on : ubuntu-latest
214
214
outputs :
215
215
val : ${{ steps.host.outputs.manifest }}
216
216
steps :
@@ -274,7 +274,7 @@ jobs:
274
274
# still allowing individual publish jobs to skip themselves (for prereleases).
275
275
# "host" however must run to completion, no skipping allowed!
276
276
if : ${{ always() && needs.host.result == 'success' }}
277
- runs-on : " ubuntu-20.04 "
277
+ runs-on : ubuntu-latest
278
278
env :
279
279
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
280
280
steps :
You can’t perform that action at this time.
0 commit comments