diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f1867e6512183d511934cb718d4f771417c36db7..73925695aa8dad2be3a921f8412aadd2fa8e55c6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,7 +4,9 @@ on: [push, pull_request, workflow_dispatch]
 
 jobs:
   fmt:
-    runs-on: "gitlab-registry.isae-supaero.fr/dragoon/komodo:latest"
+    runs-on: ubuntu-latest
+    container:
+      image: "gitlab-registry.isae-supaero.fr/dragoon/komodo:latest"
     if: "!contains(github.event.head_commit.message, 'draft:') && !contains(github.event.head_commit.message, 'no-ci:')"
     steps:
       - uses: actions/checkout@v3
@@ -13,7 +15,9 @@ jobs:
           ./make.rs fmt --check
 
   test:
-    runs-on: "gitlab-registry.isae-supaero.fr/dragoon/komodo:latest"
+    runs-on: ubuntu-latest
+    container:
+      image: "gitlab-registry.isae-supaero.fr/dragoon/komodo:latest"
     needs: fmt
     if: "!contains(github.event.head_commit.message, 'draft:') && !contains(github.event.head_commit.message, 'no-ci:')"
     steps: