From 614db1802057627467c05f80c64ab9e671b5c9eb Mon Sep 17 00:00:00 2001 From: Daniel Edwards Date: Mon, 4 Dec 2023 11:09:25 -0500 Subject: [PATCH] fix(gh action): fixed clone depth --- .github/workflows/deploy.yml | 2 ++ .github/workflows/test-deploy.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4cd59a30..8946f431 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,6 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index f66beb56..c6a12478 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -13,6 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: 18