From a0a0d7e54865dfe9bae97684750d7d397f283867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gonz=C3=A1lez?= Date: Fri, 6 Oct 2023 10:54:09 +0100 Subject: [PATCH] ci/nightly: use actions/checkoutv2 for coverage builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While the rest of the tests use actions/checkout@v2, coverage builds currently uses v1. * Use actions/checkout@v2 instead of actions/checkout@v1 Signed-off-by: Tomás González --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index bca49d7..564b669 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -48,7 +48,7 @@ jobs: name: Calculate coverage from tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: ref: "${{ github.event.inputs.rev }}" - name: Execute tarpaulin