diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3eccc909185a5db2974a008959de8d8218fc706a..70ab0daa0fd58bfe94370ea9c2aad18874f09818 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,9 +16,9 @@ format:
 
 test_stable:
   script:
-    - cargo +stable check --examples --all
-    - cargo +stable check --examples --all-features --all
-    - cargo +stable test --release
+    - cargo check --examples --all
+    - cargo check --examples --all-features --all
+    - cargo test --release
 
 test_nightly:
   script:
@@ -29,8 +29,8 @@ test_nightly:
 
 check_no_std:
   script:
-    - cargo +stable build --no-default-features --target aarch64-unknown-none
+    - cargo build --no-default-features --target aarch64-unknown-none
 
 build_no_std:
   script:
-    - cargo +stable check --examples --no-default-features --target aarch64-unknown-none
+    - cargo check --examples --no-default-features --target aarch64-unknown-none