From e60cc54d273e93181ee481fc58a731e6d04899d1 Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Mon, 18 Jan 2021 16:08:14 -0300 Subject: [PATCH] Switch from chocolatey to scoop for curl installation Chocolatey has been incredibly slow lately, so try something new. --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 22c5aa5..6d2918e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -144,7 +144,9 @@ jobs: # < VS Preview - name: ⚙ curl - run: choco install curl -y + run: | + iwr -useb get.scoop.sh | iex + scoop install curl - name: 🔍 status for PR if: ${{ github.event.pull_request.head.sha }}