From 295975d16b123819ef4369a63a20845d478115cb Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Thu, 20 Apr 2023 21:47:52 -0600 Subject: [PATCH] chore(actions): Fix for Chromatic action using actions/checkout@v3 (#23759) --- .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 67a9dfac69..11e07e6c5a 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