From e7ffab619def159041b60a9857c43e58355d2369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 1 Sep 2023 08:30:35 +0000 Subject: [PATCH] doc/ci/caching/index: Fix disable cache example "cache" key is a hash, not a list --- doc/ci/caching/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ci/caching/index.md b/doc/ci/caching/index.md index 7aeafce93526b8..38327a96e08950 100644 --- a/doc/ci/caching/index.md +++ b/doc/ci/caching/index.md @@ -181,7 +181,7 @@ To disable it completely for a job, use an empty list: ```yaml job: - cache: [] + cache: {} ``` ## Inherit global configuration, but override specific settings per job -- GitLab