diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 86c2c843..7cc25c9d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - persist-credentials: false + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: '18.x' @@ -32,6 +32,8 @@ jobs: CI: true steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: '18.x' @@ -48,6 +50,8 @@ jobs: CI: true steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: '18.x' @@ -63,6 +67,9 @@ jobs: needs: [lint, build, test] steps: - uses: actions/checkout@v3 + with: + persist-credentials: false + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: '18.x'