Skip to content

Commit 3c12671

Browse files
committed
Update to latest ubuntu
1 parent e2a0c79 commit 3c12671

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ on:
4747
jobs:
4848
# Run 'cargo dist plan' (or host) to determine what tasks we need to do
4949
plan:
50-
runs-on: "ubuntu-20.04"
50+
runs-on: "ubuntu-latest"
5151
outputs:
5252
val: ${{ steps.plan.outputs.manifest }}
5353
tag: ${{ !github.event.pull_request && github.ref_name || '' }}
@@ -160,7 +160,7 @@ jobs:
160160
needs:
161161
- plan
162162
- build-local-artifacts
163-
runs-on: "ubuntu-20.04"
163+
runs-on: "ubuntu-latest"
164164
env:
165165
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
166166
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
@@ -210,7 +210,7 @@ jobs:
210210
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') }}
211211
env:
212212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
213-
runs-on: "ubuntu-20.04"
213+
runs-on: "ubuntu-latest"
214214
outputs:
215215
val: ${{ steps.host.outputs.manifest }}
216216
steps:
@@ -270,7 +270,7 @@ jobs:
270270
needs:
271271
- plan
272272
- host
273-
runs-on: "ubuntu-20.04"
273+
runs-on: "ubuntu-latest"
274274
env:
275275
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
276276
PLAN: ${{ needs.plan.outputs.val }}
@@ -303,7 +303,7 @@ jobs:
303303
# still allowing individual publish jobs to skip themselves (for prereleases).
304304
# "host" however must run to completion, no skipping allowed!
305305
if: ${{ always() && needs.host.result == 'success' && (needs.publish-npm.result == 'skipped' || needs.publish-npm.result == 'success') }}
306-
runs-on: "ubuntu-20.04"
306+
runs-on: "ubuntu-latest"
307307
env:
308308
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
309309
steps:

0 commit comments

Comments
 (0)