Skip to content

Commit

Permalink
upgrade getdeps GitHub actions to Ubuntu 20 (#516)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #516

X-link: facebook/watchman#1050

X-link: facebook/proxygen#426

X-link: facebook/folly#1842

X-link: facebook/fboss#117

Sadly, even though Ubuntu 18.04 is still in LTS, GitHub is deprecating
its runner image.

Migrate the generated GitHub Actions to 20.04.

actions/runner-images#6002

https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/

Reviewed By: fanzeyi

Differential Revision: D38877286

fbshipit-source-id: 85f3324d6666eacb190a43985585b438de69d545
  • Loading branch information
chadaustin authored and facebook-github-bot committed Aug 22, 2022
1 parent 8b03f67 commit 72f8503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/getdeps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Fetch ninja
Expand Down
2 changes: 1 addition & 1 deletion build/fbcode_builder/getdeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ def setup_project_cmd_parser(self, parser):
help="Allow CI to fire on all branches - Handy for testing",
)
parser.add_argument(
"--ubuntu-version", default="18.04", help="Version of Ubuntu to use"
"--ubuntu-version", default="20.04", help="Version of Ubuntu to use"
)
parser.add_argument(
"--main-branch",
Expand Down

0 comments on commit 72f8503

Please sign in to comment.