diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index d5f2261a494529f7e449f1e59c86592e6669a7b9..a669ddecef23cd69f21ffc9ce564af4006aa9ddb 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -19,7 +19,7 @@ jobs:
           pip install "ansible-core >=2.15,<2.16" ansible-lint
           utils/build-galaxy-release.sh -ki
           cd .galaxy-build
-          ansible-lint
+          ansible-lint --profile production --exclude tests/integration/ --exclude tests/unit/ --parseable --nocolor
 
   yamllint:
     name: Verify yamllint
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 3c1417ae9fcc73e430c49841f0f3428ecc3350f9..00d5b2fadce4ba5868f85efca2b49543e492e3bc 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,15 +1,25 @@
 ---
 repos:
 - repo: https://github.com/ansible/ansible-lint.git
-  rev: v6.6.1
+  rev: v6.17.2
   hooks:
   - id: ansible-lint
     always_run: false
     pass_filenames: true
     files: \.(yaml|yml)$
     exclude: /env[^/]*.(yaml|yml)$
-    entry: |
-        env ANSIBLE_LIBRARY=./plugins/modules ANSIBLE_MODULE_UTILS=./plugins/module_utils ANSIBLE_DOC_FRAGMENT_PLUGINS=./plugins/doc_fragments ansible-lint
+    entry: >-
+        env
+        ANSIBLE_LIBRARY=./plugins/modules
+        ANSIBLE_MODULE_UTILS=./plugins/module_utils
+        ANSIBLE_DOC_FRAGMENT_PLUGINS=./plugins/doc_fragments
+        ansible-lint
+          --offline
+          --profile production
+          --exclude tests/integration/
+          --exclude tests/unit/
+          --parseable
+          --nocolor
 - repo: https://github.com/adrienverge/yamllint.git
   rev: v1.28.0
   hooks:
diff --git a/requirements-dev.txt b/requirements-dev.txt
index f7fa4419e0891b7fd3be52ddbaccd7453464f7e5..750f7f04973419703a57b0b414e3ef6ba30006e8 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -7,4 +7,4 @@ pylint==2.14.4
 wrapt == 1.14.0
 pydocstyle==6.0.0
 yamllint==1.28.0
-ansible-lint==6.6.1
+ansible-lint
diff --git a/tests/sanity/galaxy-importer.cfg b/tests/sanity/galaxy-importer.cfg
index fae700c20b2370cd2ac74e30227ab5201381be48..772aa56aacedccc5f5d50fec65238245b962ce84 100644
--- a/tests/sanity/galaxy-importer.cfg
+++ b/tests/sanity/galaxy-importer.cfg
@@ -1,5 +1,5 @@
 [galaxy-importer]
 RUN_ANSIBLE_TEST = True
-RUN_ANSIBLE_LINT = True
+RUN_ANSIBLE_LINT = False
 ANSIBLE_TEST_LOCAL_IMAGE = True
 LOCAL_IMAGE_DOCKER = True
diff --git a/utils/lint_check.sh b/utils/lint_check.sh
index 61c3b0b91eed98157fb40f2e293ab7f1fd16014a..25d4f8878c0b4cd551daaf370961c08bcabe8de6 100755
--- a/utils/lint_check.sh
+++ b/utils/lint_check.sh
@@ -26,7 +26,7 @@ playbook_dirs=(
     "tests"
     "playbooks"
 )
-ansible-lint --force-color "${playbook_dirs[@]}"
+ansible-lint --offline --profile production --exclude tests/integration/ --exclude tests/unit/ --parseable --force-color "${playbook_dirs[@]}"
 
 echo -e "${INFO}Running 'ansible-doc-test'...${RST}"
 python "${topdir}/ansible-doc-test" -v roles plugins