From 05b59008fb6259125c39bc0f746a2993814271f4 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Thu, 20 Apr 2023 14:15:10 -0600 Subject: [PATCH] chore(actions): Fix for Chromatic action using actions/checkout@v3 --- .github/workflows/chromatic-master.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/chromatic-master.yml b/.github/workflows/chromatic-master.yml index 67a9dfac69d2a..11e07e6c5ab3e 100644 --- a/.github/workflows/chromatic-master.yml +++ b/.github/workflows/chromatic-master.yml @@ -53,6 +53,8 @@ jobs: # Job steps steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 # 👈 Required to retrieve git history - name: Install dependencies run: npm ci working-directory: superset-frontend