From 9514f2e8bfef20f86ad8929a4ea912483a991a5c Mon Sep 17 00:00:00 2001 From: Nicko Guyer Date: Mon, 3 Jan 2022 14:49:14 -0500 Subject: [PATCH] Set fetch-depth to get the full history in GitHub Actions Signed-off-by: Nicko Guyer --- .github/workflows/go.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d61430b278..b4a7e48f25 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -39,6 +39,8 @@ jobs: fail-fast: false steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Set up Go uses: actions/setup-go@v2