Skip to content

Commit 93cc2a2

Browse files
chadaustinfacebook-github-bot
authored andcommitted
upgrade getdeps GitHub actions to Ubuntu 20 (#516)
Summary: X-link: facebook/fbthrift#516 X-link: facebook/watchman#1050 X-link: facebook/proxygen#426 Pull Request resolved: #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
1 parent b22ffef commit 93cc2a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/getdeps_linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-18.04
15+
runs-on: ubuntu-20.04
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Fetch boost

build/fbcode_builder/getdeps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ def setup_project_cmd_parser(self, parser):
11151115
help="Allow CI to fire on all branches - Handy for testing",
11161116
)
11171117
parser.add_argument(
1118-
"--ubuntu-version", default="18.04", help="Version of Ubuntu to use"
1118+
"--ubuntu-version", default="20.04", help="Version of Ubuntu to use"
11191119
)
11201120
parser.add_argument(
11211121
"--main-branch",

0 commit comments

Comments
 (0)