diff --git a/.github/workflows/getdeps_linux.yml b/.github/workflows/getdeps_linux.yml index e7c5ecc2b..fbb7b2a88 100644 --- a/.github/workflows/getdeps_linux.yml +++ b/.github/workflows/getdeps_linux.yml @@ -15,7 +15,7 @@ permissions: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Fetch ninja diff --git a/build/fbcode_builder/getdeps.py b/build/fbcode_builder/getdeps.py index 04f06d44a..a3338620a 100755 --- a/build/fbcode_builder/getdeps.py +++ b/build/fbcode_builder/getdeps.py @@ -931,7 +931,7 @@ class GenerateGitHubActionsCmd(ProjectCmdBase): def run_project_cmd(self, args, loader, manifest): platforms = [ - HostType("linux", "ubuntu", "18"), + HostType("linux", "ubuntu", "22"), HostType("darwin", None, None), HostType("windows", None, None), ] @@ -1216,7 +1216,7 @@ jobs: help="Allow CI to fire on all branches - Handy for testing", ) parser.add_argument( - "--ubuntu-version", default="20.04", help="Version of Ubuntu to use" + "--ubuntu-version", default="22.04", help="Version of Ubuntu to use" ) parser.add_argument( "--cron",