diff --git a/lakedrops.yml b/lakedrops.yml
index 67ef9031bc4337311faf5a74d2d0b25dfdc30e32..84e4149430815f18cf78dfafe5a0cdb84c2f6251 100644
--- a/lakedrops.yml
+++ b/lakedrops.yml
@@ -22,6 +22,7 @@ variables:
   DISABLE_NODE_ACCESS_REBUILD: 0
   ENVIRONMENT_NAME: ${PROJECT_NAME}/$CI_COMMIT_REF_NAME
   ENVIRONMENT_URL: https://www.example.com/$SITE_NAME
+  IGNORE_COMPOSER_ABANDONED_AUDIT: 0
   IGNORE_COMPOSER_AUDIT: 0
   IGNORE_COMPOSER_EXTENDED_AUDIT: 1
   INITIAL_SETUP_COMMAND: 'echo "Nothing to do for initial setup"'
diff --git a/test-and-deploy.yml b/test-and-deploy.yml
index 08ea7b25e77e526b67fe1d3c905b72ead2685f7f..7184f69558683ee48638cbb11e9e716a662767ae 100644
--- a/test-and-deploy.yml
+++ b/test-and-deploy.yml
@@ -718,7 +718,6 @@ Debug:
     - git remote rm origin
     - git remote add origin git@${CI_SERVER_HOST}:$CI_PROJECT_PATH.git
     - composer update --no-interaction --no-progress --no-dev
-    - composer config --no-plugins --no-interaction audit.abandoned fail
     - if [[ "$IGNORE_COMPOSER_AUDIT" == "0" ]]; then composer audit --no-dev --locked --format=table; fi
     - git status >/tmp/test.log 2>&1
     - EC=0
@@ -759,7 +758,6 @@ Debug:
     - !reference [.prepareaccess, before_script]
     - !reference [.preparecomposerplugins, before_script]
   script:
-    - composer config --no-plugins --no-interaction audit.abandoned fail
     - composer audit --no-dev --locked --format=table
   rules:
     - if: $IGNORE_COMPOSER_AUDIT == "0"