From 6094692762ea535846fa22f0542852cf7c07f8d3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 9 Oct 2025 23:22:47 +0200 Subject: [PATCH] Switch soon to become default checkout method on CircleCI It is not used by default yet, so switch to it explicitly as using it results in much faster checkout times. See https://circleci.com/changelog/introducing-a-faster-checkout-option/ Closes #25872. --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 97e18fc671..7a5c60f13c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,8 @@ jobs: name: Install Git command: dnf install -y git - - checkout + - checkout: + method: blobless - run: name: Install dependencies