github / roadmap

GitHub public roadmap
Creative Commons Attribution 4.0 International
7.77k stars 934 forks source link

Actions: Ubuntu 24 on GitHub-hosted runners (Beta) #958

Open github-product-roadmap opened 2 months ago

github-product-roadmap commented 2 months ago

Summary

Actions will add the ability to run your workflow jobs on the latest Ubuntu version from Canonical.

Intended Outcome

Developers will be able to build and test their code on the latest version of Ubuntu.

How will it work?

Update your workflows to include runs-on: ubuntu-24.04

jobs:
  build:
    runs-on: ubuntu-24.04

    steps:
      - uses: actions/checkout@v4

      - name: Run a one-line script
        run: echo Hello from Octo Organization