From e5b7d8c39685674edf998603af2cad50aad2f4be Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Sat, 11 Jan 2020 10:07:15 +0100 Subject: [PATCH] Fetch all repository history. --- .github/workflows/lint.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 3e32264..ab437c5 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - # Fetch the last 31 days to please linter's age checks. - - run: | - git checkout 'master@{31 days ago}' + with: + # Fetch all history to please linter's age checks. + fetch-depth: 0 - uses: max/awesome-lint@master