File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -219,9 +219,9 @@ RUN apt update \
219
219
php8.2-xsl \
220
220
php8.2-zip \
221
221
# Set default PHP version
222
- && update-alternatives --set php /usr/bin/php7.4 \
223
- && update-alternatives --set phpize /usr/bin/phpize7.4 \
224
- && update-alternatives --set php-config /usr/bin/php-config7.4 \
222
+ && update-alternatives --set php /usr/bin/php8.0 \
223
+ && update-alternatives --set phpize /usr/bin/phpize8.0 \
224
+ && update-alternatives --set php-config /usr/bin/php-config8.0 \
225
225
&& apt autoremove -y \
226
226
&& apt clean
227
227
Original file line number Diff line number Diff line change @@ -233,6 +233,7 @@ The container the action provides and consumes builds off the ubuntu:focal image
233
233
- 7.4
234
234
- 8.0
235
235
- 8.1
236
+ - 8.2
236
237
237
238
Each provides the following extensions by default :
238
239
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ SUBSTITUTIONS+=('s/mysqlnd.collect_memory_statistics ?= ?(On|Off)/mysqlnd.collec
14
14
SUBSTITUTIONS+=(' s/zend.assertions ?= ?(-1|1)/zend.assertions = 1/' )
15
15
SUBSTITUTIONS+=(' s/opcache.huge_code_pages ?= ?(0|1)/opcache.huge_code_pages = 0/' )
16
16
17
- for PHP_VERSION in 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1; do
17
+ for PHP_VERSION in 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 ; do
18
18
for PHP_SAPI in cli phpdbg; do
19
19
INI_FILE=" /etc/php/${PHP_VERSION} /${PHP_SAPI} /php.ini"
20
20
for SUBSTITUTION in " ${SUBSTITUTIONS[@]} " ; do
You can’t perform that action at this time.
0 commit comments