Skip to content

Commit 8303227

Browse files
committed
Trying to get Ubuntu runner up to date for CI
1 parent 9edabe6 commit 8303227

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.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 '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 || '' }}
@@ -168,7 +168,7 @@ jobs:
168168
needs:
169169
- plan
170170
- build-local-artifacts
171-
runs-on: "ubuntu-20.04"
171+
runs-on: "ubuntu-latest"
172172
env:
173173
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
174174
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
@@ -218,7 +218,7 @@ jobs:
218218
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') }}
219219
env:
220220
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
221-
runs-on: "ubuntu-20.04"
221+
runs-on: "ubuntu-latest"
222222
outputs:
223223
val: ${{ steps.host.outputs.manifest }}
224224
steps:
@@ -278,7 +278,7 @@ jobs:
278278
needs:
279279
- plan
280280
- host
281-
runs-on: "ubuntu-20.04"
281+
runs-on: "ubuntu-latest"
282282
env:
283283
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
284284
PLAN: ${{ needs.plan.outputs.val }}
@@ -328,7 +328,7 @@ jobs:
328328
# still allowing individual publish jobs to skip themselves (for prereleases).
329329
# "host" however must run to completion, no skipping allowed!
330330
if: ${{ always() && needs.host.result == 'success' && (needs.publish-homebrew-formula.result == 'skipped' || needs.publish-homebrew-formula.result == 'success') }}
331-
runs-on: "ubuntu-20.04"
331+
runs-on: "ubuntu-latest"
332332
env:
333333
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
334334
steps:

dist-workspace.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ publish-jobs = ["homebrew"]
1818

1919
[dist.dependencies.apt]
2020
libgtk-3-dev = "*"
21+
22+
[dist.github-custom-runners]
23+
global = "ubuntu-latest"

0 commit comments

Comments
 (0)