We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92bdb89 commit d6c47e3Copy full SHA for d6c47e3
.github/workflows/ci.yaml
@@ -251,7 +251,13 @@ jobs:
251
# The centos container doesn't have Git 2.18.0 or higher
252
# so we install git again, otherwise submodules won't be installed
253
- name: Install Git
254
- run: yum install -y git
+ # Source: https://www.tutorialspoint.com/how-to-install-the-latest-version-of-git-on-centos-7-x-6-x
255
+ run: |
256
+ yum install epel-release
257
+ yum remove git
258
+ rpm -U https://centos7.iuscommunity.org/ius-release.rpm
259
+ yum install git2u
260
+ git --version
261
262
- name: Checkout repo
263
uses: actions/checkout@v3
0 commit comments