diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 928e27f..6dd61a4 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -34,7 +34,7 @@ jobs: CIP_TAG: ${{ matrix.cip_tag }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Bootstrap CIP run: | @@ -47,7 +47,7 @@ jobs: cip cache-key - name: Cache CPAN modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cip key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }} diff --git a/Changes b/Changes index fd97d40..ca4dfae 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for {{$dist->name}} {{$NEXT}} + - Fetch dist tarballs from metacpan instead of BackPAN (gh#21) 0.20 2022-09-01 19:15:57 -0600 - Validate SSL with (gh#19) diff --git a/lib/App/cpangitify.pm b/lib/App/cpangitify.pm index 04ed7a7..9b36244 100644 --- a/lib/App/cpangitify.pm +++ b/lib/App/cpangitify.pm @@ -106,8 +106,8 @@ sub main ($, @args) my %skip; my $opt_backpan_index_url; - my $opt_backpan_url = "http://backpan.perl.org/authors/id"; - $opt_metacpan_url = "http://fastapi.metacpan.org/"; + my $opt_backpan_url = "https://cpan.metacpan.org/authors/id"; + $opt_metacpan_url = "https://fastapi.metacpan.org/"; my $opt_trace = 0; my $opt_output; my $opt_resume;