diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d1d42ae7431c04c00b1371fb110e28ddf6da0d8f..53abec37c932fcd6b092bde6b7ce5112a0e0c43c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -32,26 +32,18 @@ before_script:
 stages:
   - trixie
   - bookworm
-  # - bullseye
 trixie:
-  image: registry.git.coop/webarch/containers/images/trixie:20240326
+  image: registry.git.coop/webarch/containers/images/trixie:20240426
   stage: trixie
   script:
     - pre-commit install
     - pre-commit run --all-files
     - molecule test --all
 bookworm:
-  image: registry.git.coop/webarch/containers/images/bookworm:20240326
+  image: registry.git.coop/webarch/containers/images/bookworm:20240426
   stage: bookworm
   script:
     - pre-commit install
     - pre-commit run --all-files
     - molecule test --all
-# The Bullseye test run OK but Molecule never completes
-# https://github.com/ansible/molecule/discussions/4020
-# bullseye:
-#   image: registry.git.coop/webarch/containers/images/bullseye:20240326
-#   stage: bullseye
-#   script:
-#     - molecule test --all
 ...