From bfb644c0946b13de34949fd3b778efb2b54b74ae Mon Sep 17 00:00:00 2001 From: Wangchong Zhou Date: Tue, 1 Aug 2023 00:16:28 -0700 Subject: [PATCH] chore(cd): bump git to 2.41.0 to avoid cache issue --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f269657a3fb3..24b659086948 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,7 +127,7 @@ jobs: uses: actions/cache@v3 with: path: /usr/local/git - key: ${{ matrix.label }}-git-2.30.0 + key: ${{ matrix.label }}-git-2.41.0 # el-7,8, amazonlinux-2,2023, debian-10 doesn't have git 2.18+, so we need to install it manually - name: Install newer Git @@ -141,9 +141,9 @@ jobs: yum groupinstall -y 'Development Tools' yum install -y wget zlib-devel openssl-devel curl-devel expat-devel gettext-devel perl-CPAN perl-devel fi - wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.30.0.tar.gz - tar xf git-2.30.0.tar.gz - cd git-2.30.0 + wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.41.0.tar.gz + tar xf git-2.41.0.tar.gz + cd git-2.41.0 make configure ./configure --prefix=/usr/local/git make -j$(nproc)