From 9a6f1227e367f8bd16557d101f2178e985db9b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= <stefan@buerk.tech> Date: Wed, 7 Feb 2024 10:23:18 +0100 Subject: [PATCH] [TASK] Use correct global cache key for gitlab workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit During branching for TYPO3 v13 the GitLab workflow cache keys has been adjusted. However, the generic cache key has been missed. Use the correct one now. Resolves: #103068 Releases: 12.4 Change-Id: I16a5e7e7bfbd9f1ca4c50d8057d1edfaae5b66c1 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82831 Tested-by: Benjamin Franzke <ben@bnf.dev> Reviewed-by: Stefan Bürk <stefan@buerk.tech> Tested-by: Stefan Bürk <stefan@buerk.tech> Reviewed-by: Benjamin Franzke <ben@bnf.dev> Tested-by: core-ci <typo3@b13.com> --- Build/gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/gitlab-ci.yml b/Build/gitlab-ci.yml index ec1bdfbc1609..b4c4228b5ae0 100644 --- a/Build/gitlab-ci.yml +++ b/Build/gitlab-ci.yml @@ -22,7 +22,7 @@ cache: # The default key is: "Cache everything created by a 'composer install' for main branch. # This means jobs using this default key should not create additional stuff in .cache # directory, for instance by calling a 'npm ci' or 'composer min' or similar. - key: main-composer + key: 12.4-composer paths: - .cache -- GitLab