From e273bbe51f27f2f17d5f3a979b5a580854ccf97a Mon Sep 17 00:00:00 2001 From: Bram Date: Fri, 16 Sep 2022 20:18:58 +0200 Subject: CI/dist-modules: Use `actions/checkout@v2` The test/checkout does work with `actions/checkout@v2` so use it instead of 'checkout@v1'. (v2 is faster because it does a shallow clone and doesn't fetch the tags.) (My *assumption* on why `checkout@v1` was used: `checkout@v2` does not work when a 32-bit container is used on a 64-bit host. In these tests it uses a 64-bit container and that does work.) --- .github/workflows/testsuite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index f57f6a3aa0..70fca71530 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -801,7 +801,7 @@ jobs: image: perldocker/perl-tester:${{ matrix.perl-version }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: perl -V run: perl -V - name: Build and test dist modules -- cgit v1.2.1