Skip to content

Commit eb24d7d

Browse files
authored
[ECP-9685] Start using Magento 2.4.8 on automated test pipelines (#2959)
* [ECP-9685] Bump Magento version to 2.4.8 * [ECP-9685] Install PHP-FTP * [ECP-9685] Install PHP-FTP
1 parent cbc31ea commit eb24d7d

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ RUN apt-get update \
4040
unzip
4141

4242
RUN docker-php-ext-configure gd --with-freetype --with-jpeg
43-
RUN docker-php-ext-install -j$(nproc) bcmath gd intl pdo_mysql simplexml soap sockets xsl zip
43+
RUN docker-php-ext-configure ftp --with-openssl-dir=/usr
44+
RUN docker-php-ext-install -j$(nproc) bcmath gd intl pdo_mysql simplexml soap sockets xsl zip ftp
4445
RUN a2enmod ssl
4546
RUN a2ensite default-ssl.conf #can be removed if not needed
4647
WORKDIR /var/www/html

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
php-version: ["8.3"]
36-
magento-version: ["2.4.7-p2"]
36+
magento-version: ["2.4.8"]
3737
runs-on:
3838
group: larger-runners
3939
labels: ubuntu-latest-8-cores

.github/workflows/graphql-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
php-version: ["8.2"]
11-
magento-version: ["2.4.6-p7"]
11+
magento-version: ["2.4.8"]
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 25
1414
env:

.github/workflows/mftf-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
include:
1616
- php-version: '8.3'
17-
magento-version: '2.4.7-p2'
17+
magento-version: '2.4.8'
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 25
2020
env:

.github/workflows/restapi-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
php-version: [8.3]
11-
magento-version: [2.4.7-p2]
11+
magento-version: [2.4.8]
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 25
1414
env:

0 commit comments

Comments
 (0)