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 028207db56a2f2683b37f052c6541727bdbb6750
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Fri Apr 5 12:16:11 2024 -0700

    spread lfs: false on all actions
---
 .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 +
 .github/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 +
 .github/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 +
 36 files changed, 51 insertions(+)

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

Reply via email to