From b8a7bef29725fab1eb90088174bad99bb42fcd4e Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 8 Jul 2022 14:34:18 -0400 Subject: [PATCH] Clone entire repo in "Lint" action --- .github/workflows/lint.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 549bd9ca6..610b9e698 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,12 +7,11 @@ on: jobs: lint: runs-on: ubuntu-latest - steps: - name: Set up environment uses: actions/checkout@v1 - with: # no need for the history - fetch-depth: 1 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v1 with: