From 819c9644fe60001873822259b7ebcdda14af44a2 Mon Sep 17 00:00:00 2001 From: Peter Boling Date: Mon, 1 Nov 2021 00:02:14 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Install=20cURL=20Headers=20(more?= =?UTF-8?q?=20differently)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ref: https://github.com/actions/virtual-environments/issues/37#issue-506711317 Signed-off-by: Peter Boling --- .github/workflows/supported.yml | 4 +--- .github/workflows/unsupported.yml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/supported.yml b/.github/workflows/supported.yml index 4ff8ef3f..8aef9282 100644 --- a/.github/workflows/supported.yml +++ b/.github/workflows/supported.yml @@ -36,9 +36,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Install cURL Headers - run: curl https://curl.haxx.se/download/curl-$V.tar.gz | sudo tar xz -C /usr --strip-components=1 curl-$V/include - env: - V: 7.58.0 + run: sudo apt-get install libcurl4-openssl-dev - name: Setup Ruby & Bundle uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/unsupported.yml b/.github/workflows/unsupported.yml index 482bc764..c0e8a95b 100644 --- a/.github/workflows/unsupported.yml +++ b/.github/workflows/unsupported.yml @@ -29,9 +29,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Install cURL Headers - run: curl https://curl.haxx.se/download/curl-$V.tar.gz | sudo tar xz -C /usr --strip-components=1 curl-$V/include - env: - V: 7.58.0 + run: sudo apt-get install libcurl4-openssl-dev - name: Setup Ruby & Bundle uses: ruby/setup-ruby@v1 with: