This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch setup-git-lfs
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 7f66bfb2b19b06e71e90adef7c6c1c95d2c06da5
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Fri Apr 5 11:52:34 2024 -0700

    chore: set up git lfs for larger files
    
    I recently realized that even shallow clones of this repo are pretty
    large, with a fair amount of that coming from video and image files.
    
    Here I setup the large video in our README to be stored in git lfs
    as well as image files for the docs.
    
    This change should be 100% seemless for anyone who has git-lfs installed
    and shouldn't affect common workflows.
    
    Also, to reap the benefits in CI, I'm setting up the checkout actions
    to more systematically not bring those files as they aren't required
    for most CI workloads, with the exception of building docs.
    
    Given the load on CI and how much we checkout the repo there, this
    should have a significant impact on speed and bandwidth of CI. I
    estimated about 1/2 the size from this handful of files
    
    Note that this change only affects the repo moving forward, meaning
    only shallow clones will see a benefit. There's a possibility of doing
    this retroactively, but it requires modifying git history and I would
    not recommend that.
---
 .gitattributes                                     |  14 ++++++++++++++
 .github/actions/setup-supersetbot/action.yml       |   1 +
 .github/workflows/cancel_duplicates.yml            |   2 ++
 .github/workflows/check_db_migration_confict.yml   |   2 ++
 .github/workflows/codeql-analysis.yml              |   2 ++
 .github/workflows/dependency-review.yml            |   2 ++
 .github/workflows/docker-release.yml               |   1 +
 .github/workflows/docker.yml                       |   2 ++
 .github/workflows/embedded-sdk-release.yml         |   2 ++
 .github/workflows/embedded-sdk-test.yml            |   2 ++
 .github/workflows/ephemeral-env.yml                |   2 ++
 .github/workflows/generate-FOSSA-report.yml        |   1 +
 .github/workflows/issue_creation.yml               |   1 +
 .github/workflows/latest-release-tag.yml           |   1 +
 .github/workflows/license-check.yml                |   1 +
 .github/workflows/pr-lint.yml                      |   1 +
 .github/workflows/pre-commit.yml                   |   1 +
 .github/workflows/prefer-typescript.yml            |   1 +
 .github/workflows/release.yml                      |   1 +
 .github/workflows/superset-applitool-cypress.yml   |   1 +
 .../workflows/superset-applitools-storybook.yml    |   1 +
 .github/workflows/superset-cli.yml                 |   1 +
 .github/workflows/superset-docs-deploy.yml         |   1 +
 .github/workflows/superset-docs-verify.yml         |   1 +
 .github/workflows/superset-e2e.yml                 |   2 ++
 .github/workflows/superset-frontend.yml            |   1 +
 .github/workflows/superset-helm-lint.yml           |   1 +
 .github/workflows/superset-helm-release.yml        |   1 +
 .../workflows/superset-python-integrationtest.yml  |   3 +++
 .github/workflows/superset-python-misc.yml         |   2 ++
 .github/workflows/superset-python-presto-hive.yml  |   2 ++
 .github/workflows/superset-python-unittest.yml     |   1 +
 .github/workflows/superset-translations.yml        |   2 ++
 .github/workflows/superset-websocket.yml           |   1 +
 .github/workflows/supersetbot.yml                  |   1 +
 .github/workflows/tech-debt.yml                    |   2 ++
 .github/workflows/update-monorepo-lockfiles.yml    |   1 +
 docs/static/img/applitools.png                     | Bin 37046 -> 130 bytes
 docs/static/img/dashboard.jpg                      | Bin 128565 -> 131 bytes
 docs/static/img/dashboard_card_view.jpg            | Bin 143732 -> 131 bytes
 docs/static/img/data-point.jpg                     | Bin 1795832 -> 132 bytes
 docs/static/img/explore.jpg                        | Bin 150805 -> 131 bytes
 docs/static/img/explore_ui.jpg                     | Bin 154997 -> 131 bytes
 docs/static/img/github-dark.png                    | Bin 23562 -> 130 bytes
 docs/static/img/github.png                         | Bin 8640 -> 129 bytes
 docs/static/img/grid-background.jpg                | Bin 124889 -> 131 bytes
 docs/static/img/hero-screenshot.jpg                | Bin 138539 -> 131 bytes
 docs/static/img/roadmap.png                        | Bin 522043 -> 131 bytes
 docs/static/img/root-cert-example.png              | Bin 41232 -> 130 bytes
 docs/static/img/sql_lab.jpg                        | Bin 117310 -> 131 bytes
 docs/static/video/superset-video-4k.mp4            | Bin 66845979 -> 133 bytes
 51 files changed, 65 insertions(+)

diff --git a/.gitattributes b/.gitattributes
index 79f44a6b26..dccc562a6b 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1 +1,15 @@
 docker/**/*.sh text eol=lf
+*.mp4 filter=lfs diff=lfs merge=lfs -text
+docs/static/img/hero-screenshot.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/sql_lab.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/dashboard.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/dashboard_card_view.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/data-point.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/explore.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/explore_ui.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/grid-background.jpg filter=lfs diff=lfs merge=lfs -text
+docs/static/img/github.png filter=lfs diff=lfs merge=lfs -text
+docs/static/img/roadmap.png filter=lfs diff=lfs merge=lfs -text
+docs/static/img/root-cert-example.png filter=lfs diff=lfs merge=lfs -text
+docs/static/img/applitools.png filter=lfs diff=lfs merge=lfs -text
+docs/static/img/github-dark.png filter=lfs diff=lfs merge=lfs -text
diff --git a/.github/actions/setup-supersetbot/action.yml 
b/.github/actions/setup-supersetbot/action.yml
index e2a7034b85..9c4297cda3 100644
--- a/.github/actions/setup-supersetbot/action.yml
+++ b/.github/actions/setup-supersetbot/action.yml
@@ -25,6 +25,7 @@ runs:
       with:
         repository: apache-superset/supersetbot
         path: supersetbot
+        lfs: false
 
     - name: Setup supersetbot from repo
       if: ${{ inputs.from-npm == 'false' }}
diff --git a/.github/workflows/cancel_duplicates.yml 
b/.github/workflows/cancel_duplicates.yml
index 751a498ab5..9623fd0ac5 100644
--- a/.github/workflows/cancel_duplicates.yml
+++ b/.github/workflows/cancel_duplicates.yml
@@ -32,6 +32,8 @@ jobs:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
         if: steps.check_queued.outputs.count >= 20
         uses: actions/checkout@v4
+        with:
+          lfs: false
 
       - name: Cancel duplicate workflow runs
         if: steps.check_queued.outputs.count >= 20
diff --git a/.github/workflows/check_db_migration_confict.yml 
b/.github/workflows/check_db_migration_confict.yml
index 079ba954ed..d421483cdb 100644
--- a/.github/workflows/check_db_migration_confict.yml
+++ b/.github/workflows/check_db_migration_confict.yml
@@ -26,6 +26,8 @@ jobs:
     steps:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
         uses: actions/checkout@v4
+        with:
+          lfs: false
       - name: Check and notify
         uses: actions/github-script@v7
         with:
diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index c200f9cb36..ce09feaaf6 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -36,6 +36,8 @@ jobs:
     steps:
       - name: Checkout repository
         uses: actions/checkout@v4
+        with:
+          lfs: false
 
       # Initializes the CodeQL tools for scanning.
       - name: Initialize CodeQL
diff --git a/.github/workflows/dependency-review.yml 
b/.github/workflows/dependency-review.yml
index 3c92e44d70..fd71c29997 100644
--- a/.github/workflows/dependency-review.yml
+++ b/.github/workflows/dependency-review.yml
@@ -16,6 +16,8 @@ jobs:
     steps:
       - name: "Checkout Repository"
         uses: actions/checkout@v4
+        with:
+          lfs: false
       - name: "Dependency Review"
         uses: actions/dependency-review-action@v4
         with:
diff --git a/.github/workflows/docker-release.yml 
b/.github/workflows/docker-release.yml
index 9f8af57012..3b64f3dae3 100644
--- a/.github/workflows/docker-release.yml
+++ b/.github/workflows/docker-release.yml
@@ -55,6 +55,7 @@ jobs:
         uses: actions/checkout@v4
         with:
           persist-credentials: false
+          lfs: false
 
       - name: Setup supersetbot
         uses: ./.github/actions/setup-supersetbot/
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index cb9d579780..2caad6f2b2 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -56,6 +56,8 @@ jobs:
         uses: actions/checkout@v4
         with:
           persist-credentials: false
+          lfs: false
+
 
       - name: Setup supersetbot
         uses: ./.github/actions/setup-supersetbot/
diff --git a/.github/workflows/embedded-sdk-release.yml 
b/.github/workflows/embedded-sdk-release.yml
index ff51d8f97b..5f9c6b5612 100644
--- a/.github/workflows/embedded-sdk-release.yml
+++ b/.github/workflows/embedded-sdk-release.yml
@@ -29,6 +29,8 @@ jobs:
         working-directory: superset-embedded-sdk
     steps:
       - uses: actions/checkout@v4
+        with:
+          lfs: false
       - uses: actions/setup-node@v4
         with:
           node-version: "18"
diff --git a/.github/workflows/embedded-sdk-test.yml 
b/.github/workflows/embedded-sdk-test.yml
index e3f3c1bdca..f4743fe04b 100644
--- a/.github/workflows/embedded-sdk-test.yml
+++ b/.github/workflows/embedded-sdk-test.yml
@@ -19,6 +19,8 @@ jobs:
         working-directory: superset-embedded-sdk
     steps:
       - uses: actions/checkout@v4
+        with:
+          lfs: false
       - uses: actions/setup-node@v4
         with:
           node-version: "18"
diff --git a/.github/workflows/ephemeral-env.yml 
b/.github/workflows/ephemeral-env.yml
index a48f8eb6aa..2b05d7d8a8 100644
--- a/.github/workflows/ephemeral-env.yml
+++ b/.github/workflows/ephemeral-env.yml
@@ -114,6 +114,7 @@ jobs:
         with:
           ref: ${{ steps.get-sha.outputs.sha }}
           persist-credentials: false
+          lfs: false
 
       - name: Set up QEMU
         uses: docker/setup-qemu-action@v3
@@ -162,6 +163,7 @@ jobs:
     - uses: actions/checkout@v4
       with:
         persist-credentials: false
+        lfs: false
 
     - name: Configure AWS credentials
       uses: aws-actions/configure-aws-credentials@v4
diff --git a/.github/workflows/generate-FOSSA-report.yml 
b/.github/workflows/generate-FOSSA-report.yml
index fb30d7dcc5..58300d604f 100644
--- a/.github/workflows/generate-FOSSA-report.yml
+++ b/.github/workflows/generate-FOSSA-report.yml
@@ -31,6 +31,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Setup Java
         uses: actions/setup-java@v4
         with:
diff --git a/.github/workflows/issue_creation.yml 
b/.github/workflows/issue_creation.yml
index 43735e4319..a654e627cf 100644
--- a/.github/workflows/issue_creation.yml
+++ b/.github/workflows/issue_creation.yml
@@ -20,6 +20,7 @@ jobs:
         uses: actions/checkout@v4
         with:
           persist-credentials: false
+          lfs: false
 
       - name: Setup supersetbot
         uses: ./.github/actions/setup-supersetbot/
diff --git a/.github/workflows/latest-release-tag.yml 
b/.github/workflows/latest-release-tag.yml
index bd73462e89..d20f198a7c 100644
--- a/.github/workflows/latest-release-tag.yml
+++ b/.github/workflows/latest-release-tag.yml
@@ -16,6 +16,7 @@ jobs:
       with:
         persist-credentials: false
         submodules: recursive
+        lfs: false
 
     - name: Check for latest tag
       id: latest-tag
diff --git a/.github/workflows/license-check.yml 
b/.github/workflows/license-check.yml
index 5f5468071d..8f8e2c0989 100644
--- a/.github/workflows/license-check.yml
+++ b/.github/workflows/license-check.yml
@@ -19,6 +19,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Setup Java
         uses: actions/setup-java@v4
         with:
diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml
index e6ea96a6ae..89aca97398 100644
--- a/.github/workflows/pr-lint.yml
+++ b/.github/workflows/pr-lint.yml
@@ -20,6 +20,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - uses: ./.github/actions/pr-lint-action
         with:
           title-regex: 
"^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|other)(\\(.+\\))?(\\!)?:\\s.+"
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index 27af14d224..04e438dd88 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -25,6 +25,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Setup Python
         uses: ./.github/actions/setup-backend/
       - name: Enable brew and helm-docs
diff --git a/.github/workflows/prefer-typescript.yml 
b/.github/workflows/prefer-typescript.yml
index f3179d3bcc..e0f14c0c44 100644
--- a/.github/workflows/prefer-typescript.yml
+++ b/.github/workflows/prefer-typescript.yml
@@ -31,6 +31,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Get changed files
         id: changed
         uses: ./.github/actions/file-changes-action
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ad1737c477..cda01d3906 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -36,6 +36,7 @@ jobs:
         with:
           # pulls all commits (needed for lerna / semantic release to 
correctly version)
           fetch-depth: 0
+          lfs: false
       - name: Get tags and filter trigger tags
         run: |
           if ! git fetch --depth=1 origin "+refs/tags/*:refs/tags/*"; then
diff --git a/.github/workflows/superset-applitool-cypress.yml 
b/.github/workflows/superset-applitool-cypress.yml
index 8e5aa91cdb..d18d0857cd 100644
--- a/.github/workflows/superset-applitool-cypress.yml
+++ b/.github/workflows/superset-applitool-cypress.yml
@@ -57,6 +57,7 @@ jobs:
           persist-credentials: false
           submodules: recursive
           ref: master
+          lfs: false
       - name: Setup Python
         uses: ./.github/actions/setup-backend/
       - name: Import test data
diff --git a/.github/workflows/superset-applitools-storybook.yml 
b/.github/workflows/superset-applitools-storybook.yml
index 147d64d286..293b940aeb 100644
--- a/.github/workflows/superset-applitools-storybook.yml
+++ b/.github/workflows/superset-applitools-storybook.yml
@@ -38,6 +38,7 @@ jobs:
           persist-credentials: false
           submodules: recursive
           ref: master
+          lfs: false
       - name: Set up Node.js
         uses: actions/setup-node@v4
         with:
diff --git a/.github/workflows/superset-cli.yml 
b/.github/workflows/superset-cli.yml
index f0e037197e..244aa47b71 100644
--- a/.github/workflows/superset-cli.yml
+++ b/.github/workflows/superset-cli.yml
@@ -44,6 +44,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
diff --git a/.github/workflows/superset-docs-deploy.yml 
b/.github/workflows/superset-docs-deploy.yml
index 07bba70edd..100e6f1707 100644
--- a/.github/workflows/superset-docs-deploy.yml
+++ b/.github/workflows/superset-docs-deploy.yml
@@ -36,6 +36,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Set up Node.js 18
         uses: actions/setup-node@v4
         with:
diff --git a/.github/workflows/superset-docs-verify.yml 
b/.github/workflows/superset-docs-verify.yml
index d51b234a16..9382661682 100644
--- a/.github/workflows/superset-docs-verify.yml
+++ b/.github/workflows/superset-docs-verify.yml
@@ -24,6 +24,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Set up Node.js 18
         uses: actions/setup-node@v4
         with:
diff --git a/.github/workflows/superset-e2e.yml 
b/.github/workflows/superset-e2e.yml
index 9086c6d0eb..6653dd6f7a 100644
--- a/.github/workflows/superset-e2e.yml
+++ b/.github/workflows/superset-e2e.yml
@@ -53,12 +53,14 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: "Checkout (pull_request) ${{ github.ref }} ( ${{ github.sha }} )"
         uses: actions/checkout@v4
         if: github.event_name == 'pull_request' || github.event_name == 
'pull_request_target'
         with:
           ref: "refs/pull/${{ github.event.number }}/merge"
           persist-credentials: false
+          lfs: false
           submodules: recursive
       - name: Check if python or frontend changes are present
         id: check
diff --git a/.github/workflows/superset-frontend.yml 
b/.github/workflows/superset-frontend.yml
index 2b078d485b..57eef42a0e 100644
--- a/.github/workflows/superset-frontend.yml
+++ b/.github/workflows/superset-frontend.yml
@@ -26,6 +26,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check npm lock file version
         run: ./scripts/ci_check_npm_lock_version.sh 
./superset-frontend/package-lock.json
       - name: Check if frontend changes are present
diff --git a/.github/workflows/superset-helm-lint.yml 
b/.github/workflows/superset-helm-lint.yml
index f16dd61fdd..08c90053ad 100644
--- a/.github/workflows/superset-helm-lint.yml
+++ b/.github/workflows/superset-helm-lint.yml
@@ -21,6 +21,7 @@ jobs:
           persist-credentials: false
           submodules: recursive
           fetch-depth: 0
+          lfs: false
 
       - name: Set up Helm
         uses: azure/setup-helm@v3
diff --git a/.github/workflows/superset-helm-release.yml 
b/.github/workflows/superset-helm-release.yml
index fd60f82d49..20729be139 100644
--- a/.github/workflows/superset-helm-release.yml
+++ b/.github/workflows/superset-helm-release.yml
@@ -21,6 +21,7 @@ jobs:
           persist-credentials: false
           submodules: recursive
           fetch-depth: 0
+          lfs: false
 
       - name: Configure Git
         run: |
diff --git a/.github/workflows/superset-python-integrationtest.yml 
b/.github/workflows/superset-python-integrationtest.yml
index 75eea5c70a..30ca4b7004 100644
--- a/.github/workflows/superset-python-integrationtest.yml
+++ b/.github/workflows/superset-python-integrationtest.yml
@@ -43,6 +43,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
@@ -102,6 +103,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
@@ -156,6 +158,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
diff --git a/.github/workflows/superset-python-misc.yml 
b/.github/workflows/superset-python-misc.yml
index 8eb34d939a..d7cedbf002 100644
--- a/.github/workflows/superset-python-misc.yml
+++ b/.github/workflows/superset-python-misc.yml
@@ -30,6 +30,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
@@ -58,6 +59,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Setup Python
         uses: ./.github/actions/setup-backend/
         with:
diff --git a/.github/workflows/superset-python-presto-hive.yml 
b/.github/workflows/superset-python-presto-hive.yml
index dd8d6612aa..1019b55cea 100644
--- a/.github/workflows/superset-python-presto-hive.yml
+++ b/.github/workflows/superset-python-presto-hive.yml
@@ -59,6 +59,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
@@ -118,6 +119,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
diff --git a/.github/workflows/superset-python-unittest.yml 
b/.github/workflows/superset-python-unittest.yml
index c5bf8bf46d..173145fc24 100644
--- a/.github/workflows/superset-python-unittest.yml
+++ b/.github/workflows/superset-python-unittest.yml
@@ -38,6 +38,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Check if python changes are present
         id: check
         env:
diff --git a/.github/workflows/superset-translations.yml 
b/.github/workflows/superset-translations.yml
index 9a8b8df1e3..a631cf7de0 100644
--- a/.github/workflows/superset-translations.yml
+++ b/.github/workflows/superset-translations.yml
@@ -22,6 +22,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Setup Node.js
         uses: actions/setup-node@v4
         with:
@@ -46,6 +47,7 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+          lfs: false
       - name: Setup Python
         uses: ./.github/actions/setup-backend/
         with:
diff --git a/.github/workflows/superset-websocket.yml 
b/.github/workflows/superset-websocket.yml
index c35573ada1..e943d5b7be 100644
--- a/.github/workflows/superset-websocket.yml
+++ b/.github/workflows/superset-websocket.yml
@@ -24,6 +24,7 @@ jobs:
         uses: actions/checkout@v4
         with:
           persist-credentials: false
+          lfs: false
       - name: Install dependencies
         working-directory: ./superset-websocket
         run: npm ci
diff --git a/.github/workflows/supersetbot.yml 
b/.github/workflows/supersetbot.yml
index 88d4648cc7..33ff706e08 100644
--- a/.github/workflows/supersetbot.yml
+++ b/.github/workflows/supersetbot.yml
@@ -41,6 +41,7 @@ jobs:
         uses: actions/checkout@v4
         with:
           persist-credentials: false
+          lfs: false
 
       - name: Setup supersetbot
         uses: ./.github/actions/setup-supersetbot/
diff --git a/.github/workflows/tech-debt.yml b/.github/workflows/tech-debt.yml
index f912ab2068..d5b379ec9d 100644
--- a/.github/workflows/tech-debt.yml
+++ b/.github/workflows/tech-debt.yml
@@ -28,6 +28,8 @@ jobs:
     steps:
       - name: Checkout Repository
         uses: actions/checkout@v4
+        with:
+          lfs: false
 
       - name: Set up Node.js
         uses: actions/setup-node@v4
diff --git a/.github/workflows/update-monorepo-lockfiles.yml 
b/.github/workflows/update-monorepo-lockfiles.yml
index b0b63a912e..6721d8a53a 100644
--- a/.github/workflows/update-monorepo-lockfiles.yml
+++ b/.github/workflows/update-monorepo-lockfiles.yml
@@ -31,6 +31,7 @@ jobs:
         uses: actions/checkout@v4
         with:
           ref: ${{ github.event.pull_request.head.ref || github.head_ref }} # 
Checkout the branch that made the PR or the comment's PR branch
+          lfs: false
 
       - name: Set up Node.js
         uses: actions/setup-node@v4
diff --git a/docs/static/img/applitools.png b/docs/static/img/applitools.png
index 89034f3780..a8dbbaec2c 100644
Binary files a/docs/static/img/applitools.png and 
b/docs/static/img/applitools.png differ
diff --git a/docs/static/img/dashboard.jpg b/docs/static/img/dashboard.jpg
index c1e539f76e..7529145fcf 100644
Binary files a/docs/static/img/dashboard.jpg and 
b/docs/static/img/dashboard.jpg differ
diff --git a/docs/static/img/dashboard_card_view.jpg 
b/docs/static/img/dashboard_card_view.jpg
index 5b32c67b38..3dd4a05178 100644
Binary files a/docs/static/img/dashboard_card_view.jpg and 
b/docs/static/img/dashboard_card_view.jpg differ
diff --git a/docs/static/img/data-point.jpg b/docs/static/img/data-point.jpg
index fe916f03fa..e4a0439933 100644
Binary files a/docs/static/img/data-point.jpg and 
b/docs/static/img/data-point.jpg differ
diff --git a/docs/static/img/explore.jpg b/docs/static/img/explore.jpg
index 110b551492..10ce15fb00 100644
Binary files a/docs/static/img/explore.jpg and b/docs/static/img/explore.jpg 
differ
diff --git a/docs/static/img/explore_ui.jpg b/docs/static/img/explore_ui.jpg
index 8097337278..94a20a618e 100644
Binary files a/docs/static/img/explore_ui.jpg and 
b/docs/static/img/explore_ui.jpg differ
diff --git a/docs/static/img/github-dark.png b/docs/static/img/github-dark.png
index 7492fcb54a..b7bbc2cd2f 100644
Binary files a/docs/static/img/github-dark.png and 
b/docs/static/img/github-dark.png differ
diff --git a/docs/static/img/github.png b/docs/static/img/github.png
index 9490ffc6d2..400bedad65 100644
Binary files a/docs/static/img/github.png and b/docs/static/img/github.png 
differ
diff --git a/docs/static/img/grid-background.jpg 
b/docs/static/img/grid-background.jpg
index 865bfe85ca..21818513db 100644
Binary files a/docs/static/img/grid-background.jpg and 
b/docs/static/img/grid-background.jpg differ
diff --git a/docs/static/img/hero-screenshot.jpg 
b/docs/static/img/hero-screenshot.jpg
index 7b2d993908..04a3625044 100644
Binary files a/docs/static/img/hero-screenshot.jpg and 
b/docs/static/img/hero-screenshot.jpg differ
diff --git a/docs/static/img/roadmap.png b/docs/static/img/roadmap.png
index ea088c7fbe..b4192ee25c 100644
Binary files a/docs/static/img/roadmap.png and b/docs/static/img/roadmap.png 
differ
diff --git a/docs/static/img/root-cert-example.png 
b/docs/static/img/root-cert-example.png
index 4b011cd1a6..c5e466015c 100644
Binary files a/docs/static/img/root-cert-example.png and 
b/docs/static/img/root-cert-example.png differ
diff --git a/docs/static/img/sql_lab.jpg b/docs/static/img/sql_lab.jpg
index 8278ee6138..4f72c60d88 100644
Binary files a/docs/static/img/sql_lab.jpg and b/docs/static/img/sql_lab.jpg 
differ
diff --git a/docs/static/video/superset-video-4k.mp4 
b/docs/static/video/superset-video-4k.mp4
index 068ce30c6f..b420b17390 100644
Binary files a/docs/static/video/superset-video-4k.mp4 and 
b/docs/static/video/superset-video-4k.mp4 differ

Reply via email to