From b2d491bc968f3bcb2eab17447b5c774afd841671 Mon Sep 17 00:00:00 2001 From: Sebastian Riedel Date: Fri, 9 Feb 2024 14:02:21 +0100 Subject: [PATCH] See if curl is still required --- .github/workflows/windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b56f6540f3..abd0e283df 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -22,8 +22,8 @@ jobs: - name: perl -V run: perl -V - name: Install Dependencies - run: curl -L https://cpanmin.us | perl - --installdeps . - - name: Install TAP::Formatter::GitHubActions - run: curl -L https://cpanmin.us | perl - -n TAP::Formatter::GitHubActions + run: | + cpanm --installdeps . + cpanm -n TAP::Formatter::GitHubActions - name: Run Tests run: prove --merge --formatter TAP::Formatter::GitHubActions -l t t/mojo t/mojolicious