From 674ee288a6c69d873ee3481a0f06b53b6c0983e8 Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Fri, 15 Dec 2023 10:36:42 +0100 Subject: [PATCH] [BUGFIX] Ensure latest TYPO3v11 in CI For some unknown reason Composer picks TYPO3 11.5.2 for the "^11.5" version constraint instead of really the latest version. This requires further investigation but for now we "help" Composer a bit by raising this to "^11.5.3". --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9515ecf..ee90b05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,11 +21,11 @@ jobs: php: - '8.1' typo3: - - ^11.5 + - ^11.5.3 - ^12.4 include: - php: '8.0' - typo3: ^11.5 + typo3: ^11.5.3 steps: - uses: actions/checkout@v4