4747jobs :
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-22 .04"
5151 outputs :
5252 val : ${{ steps.plan.outputs.manifest }}
5353 tag : ${{ !github.event.pull_request && github.ref_name || '' }}
6060 with :
6161 submodules : recursive
6262 - name : Install Rust
63- run : rustup update "1.82 .0" --no-self-update && rustup default "1.82 .0"
63+ run : rustup update "1.86 .0" --no-self-update && rustup default "1.86 .0"
6464 - name : Install dist
6565 # we specify bash to get pipefail; it guards against the `curl` command
6666 # failing. otherwise `sh` won't catch that `curl` returned non-0
@@ -128,7 +128,7 @@ jobs:
128128 echo "$HOME/.cargo/bin" >> $GITHUB_PATH
129129 fi
130130 - name : Use rustup to set correct Rust version
131- run : rustup update "1.82 .0" --no-self-update && rustup default "1.82 .0"
131+ run : rustup update "1.86 .0" --no-self-update && rustup default "1.86 .0"
132132 - name : Install dist
133133 run : ${{ matrix.install_dist.run }}
134134 # Get the dist-manifest
@@ -172,7 +172,7 @@ jobs:
172172 needs :
173173 - plan
174174 - build-local-artifacts
175- runs-on : " ubuntu-20 .04"
175+ runs-on : " ubuntu-22 .04"
176176 env :
177177 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
178178 BUILD_MANIFEST_NAME : target/distrib/global-dist-manifest.json
@@ -181,7 +181,7 @@ jobs:
181181 with :
182182 submodules : recursive
183183 - name : Install Rust
184- run : rustup update "1.82 .0" --no-self-update && rustup default "1.82 .0"
184+ run : rustup update "1.86 .0" --no-self-update && rustup default "1.86 .0"
185185 - name : Install cached dist
186186 uses : actions/download-artifact@v4
187187 with :
@@ -224,15 +224,15 @@ jobs:
224224 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') }}
225225 env :
226226 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
227- runs-on : " ubuntu-20 .04"
227+ runs-on : " ubuntu-22 .04"
228228 outputs :
229229 val : ${{ steps.host.outputs.manifest }}
230230 steps :
231231 - uses : actions/checkout@v4
232232 with :
233233 submodules : recursive
234234 - name : Install Rust
235- run : rustup update "1.82 .0" --no-self-update && rustup default "1.82 .0"
235+ run : rustup update "1.86 .0" --no-self-update && rustup default "1.86 .0"
236236 - name : Install cached dist
237237 uses : actions/download-artifact@v4
238238 with :
@@ -286,7 +286,7 @@ jobs:
286286 needs :
287287 - plan
288288 - host
289- runs-on : " ubuntu-20 .04"
289+ runs-on : " ubuntu-22 .04"
290290 env :
291291 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
292292 PLAN : ${{ needs.plan.outputs.val }}
@@ -336,7 +336,7 @@ jobs:
336336 # still allowing individual publish jobs to skip themselves (for prereleases).
337337 # "host" however must run to completion, no skipping allowed!
338338 if : ${{ always() && needs.host.result == 'success' && (needs.publish-homebrew-formula.result == 'skipped' || needs.publish-homebrew-formula.result == 'success') }}
339- runs-on : " ubuntu-20 .04"
339+ runs-on : " ubuntu-22 .04"
340340 env :
341341 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
342342 steps :
0 commit comments