From 464a36fb0a9158fcaf8854bb2a226e30de963dc6 Mon Sep 17 00:00:00 2001 From: gagliardetto Date: Wed, 14 Jun 2023 16:46:04 +0000 Subject: [PATCH] Set fetch-depth --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ddbd7e6d..3e2f091c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,10 +9,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Test run: go test ./...