chore: Updated ubuntu d4880cec
Example User · 2025-07-11 09:59 1 file(s) · +4 −4
.github/workflows/release.yml +4 −4
168 168
    needs:
169 169
      - plan
170 170
      - build-local-artifacts
171 -
    runs-on: "ubuntu-20.04"
171 +
    runs-on: "ubuntu-22.04"
172 172
    env:
173 173
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
174 174
      BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
218 218
    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') }}
219 219
    env:
220 220
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
221 -
    runs-on: "ubuntu-20.04"
221 +
    runs-on: "ubuntu-22.04"
222 222
    outputs:
223 223
      val: ${{ steps.host.outputs.manifest }}
224 224
    steps:
278 278
    needs:
279 279
      - plan
280 280
      - host
281 -
    runs-on: "ubuntu-20.04"
281 +
    runs-on: "ubuntu-22.04"
282 282
    env:
283 283
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
284 284
      PLAN: ${{ needs.plan.outputs.val }}
328 328
    # still allowing individual publish jobs to skip themselves (for prereleases).
329 329
    # "host" however must run to completion, no skipping allowed!
330 330
    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-22.04"
332 332
    env:
333 333
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
334 334
    steps: