From 9d64aed5aedd80259b742aa77a41750584f85cb3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20B=C3=BCrk?= <stefan@buerk.tech>
Date: Fri, 9 Feb 2024 21:04:19 +0100
Subject: [PATCH] [TASK] Update container image versions
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

New core-testing-* images have been build and published in
the TYPO3 testing-infrastructure repository and pulled to
the core ci gitlab runner instances. [1][2]

This change modifies `Build/Scripts/runTests.sh` to set
new image version to ensure the usage for all changes
based on this change.

For information what changed in the image see the patches
in the testing-infrastrucure repository linked below.

* core-testing-php81 => 2.11
* core-testing-php82 => 1.10
* core-testing-php83 => 1.11

[1] https://git.typo3.org/typo3/CI/testing-infrastructure/-/commit/e6719d303eacf2f377e308c800b474b735145d61
[2] https://github.com/advisories/GHSA-7c6p-848j-wh5h

Resolves: #103096
Releases: main, 13.0, 12.4, 11.5
Change-Id: If9c5ae00334acc4fa5a1417dcbf9f77d31dff62d
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82886
Reviewed-by: Stefan Bürk <stefan@buerk.tech>
Tested-by: core-ci <typo3@b13.com>
Tested-by: Stefan Bürk <stefan@buerk.tech>
---
 Build/Scripts/runTests.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh
index 254ea48d6f7d..e5a8fb05b108 100755
--- a/Build/Scripts/runTests.sh
+++ b/Build/Scripts/runTests.sh
@@ -153,13 +153,13 @@ cleanRenderedDocumentationFiles() {
 getPhpImageVersion() {
     case ${1} in
         8.1)
-            echo -n "2.10"
+            echo -n "2.11"
             ;;
         8.2)
-            echo -n "1.9"
+            echo -n "1.10"
             ;;
         8.3)
-            echo -n "1.10"
+            echo -n "1.11"
             ;;
     esac
 }
-- 
GitLab