From 46fbac97c2b02c9fa37bc375daad66f20e10e25a Mon Sep 17 00:00:00 2001 From: Graham Ollis Date: Mon, 11 Aug 2025 15:08:42 -0600 Subject: [PATCH 1/2] use https://ftpmirror.gnu.org/ to find mirror --- Changes | 2 ++ alienfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index d9d8381..432e89f 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for {{$dist->name}} {{$NEXT}} + - Experimental: use https://ftpmirror.gnu.org/make/ to find nearby mirror + instead of using https://ftp.gnu.org/gmu/make/ (gh#14, gh#15) 0.24 2022-09-23 20:33:41 -0600 - Re-released because 0.22 is missing from CPAN diff --git a/alienfile b/alienfile index 218f886..d21c452 100644 --- a/alienfile +++ b/alienfile @@ -27,7 +27,7 @@ if($^O eq 'MSWin32') share { plugin 'Download' => ( - url => 'https://ftp.gnu.org/gnu/make', + url => 'https://ftpmirror.gnu.org/make', version => qr/^make-([0-9\.]+)\.tar\.gz$/, ); From 943fc16c7320e3a537b3d50bebdb2b8a25221855 Mon Sep 17 00:00:00 2001 From: Graham Ollis Date: Mon, 11 Aug 2025 15:12:16 -0600 Subject: [PATCH 2/2] bump ci version --- .github/workflows/linux.yml | 4 ++-- .github/workflows/macos-share.yml | 4 ++-- .github/workflows/macos-system.yml | 4 ++-- .github/workflows/static.yml | 2 +- .github/workflows/windows-system.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2edcfe5..ab9f0cf 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -98,7 +98,7 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Bootstrap CIP run: | @@ -111,7 +111,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/.github/workflows/macos-share.yml b/.github/workflows/macos-share.yml index 226b4ec..ca19b8d 100644 --- a/.github/workflows/macos-share.yml +++ b/.github/workflows/macos-share.yml @@ -21,7 +21,7 @@ jobs: runs-on: macOS-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Perl run: | @@ -38,7 +38,7 @@ jobs: ls -l perlversion.txt - name: Cache CPAN modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/perl5 key: ${{ runner.os }}-build-share-${{ hashFiles('perlversion.txt') }} diff --git a/.github/workflows/macos-system.yml b/.github/workflows/macos-system.yml index 5749578..efd02da 100644 --- a/.github/workflows/macos-system.yml +++ b/.github/workflows/macos-system.yml @@ -21,7 +21,7 @@ jobs: runs-on: macOS-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Perl run: | @@ -38,7 +38,7 @@ jobs: ls -l perlversion.txt - name: Cache CPAN modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/perl5 key: ${{ runner.os }}-build-system-${{ hashFiles('perlversion.txt') }} diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index cba7de1..c1d255e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -17,7 +17,7 @@ jobs: CIP_TAG: static steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Bootstrap CIP run: | diff --git a/.github/workflows/windows-system.yml b/.github/workflows/windows-system.yml index 61c115c..b54fba6 100644 --- a/.github/workflows/windows-system.yml +++ b/.github/workflows/windows-system.yml @@ -21,7 +21,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Perl run: | @@ -42,7 +42,7 @@ jobs: dir perlversion.txt - name: Cache CPAN modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: c:\cx key: ${{ runner.os }}-build-system-${{ hashFiles('perlversion.txt') }}