Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ RUN apt-get update \
unzip

RUN docker-php-ext-configure gd --with-freetype --with-jpeg
RUN docker-php-ext-install -j$(nproc) bcmath gd intl pdo_mysql simplexml soap sockets xsl zip
RUN docker-php-ext-configure ftp --with-openssl-dir=/usr
RUN docker-php-ext-install -j$(nproc) bcmath gd intl pdo_mysql simplexml soap sockets xsl zip ftp
RUN a2enmod ssl
RUN a2ensite default-ssl.conf #can be removed if not needed
WORKDIR /var/www/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
php-version: ["8.3"]
magento-version: ["2.4.7-p2"]
magento-version: ["2.4.8"]
runs-on:
group: larger-runners
labels: ubuntu-latest-8-cores
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/graphql-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
php-version: ["8.2"]
magento-version: ["2.4.6-p7"]
magento-version: ["2.4.8"]
runs-on: ubuntu-latest
timeout-minutes: 25
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mftf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
include:
- php-version: '8.3'
magento-version: '2.4.7-p2'
magento-version: '2.4.8'
runs-on: ubuntu-latest
timeout-minutes: 25
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/restapi-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
php-version: [8.3]
magento-version: [2.4.7-p2]
magento-version: [2.4.8]
runs-on: ubuntu-latest
timeout-minutes: 25
env:
Expand Down
Loading