Skip to content

Commit aa156b9

Browse files
committed
⬆️ review update issue #3551
1 parent 8fdeeec commit aa156b9

File tree

6 files changed

+8
-14
lines changed

6 files changed

+8
-14
lines changed

.github/workflows/api_tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
apicurltests:
88
strategy:
99
matrix:
10-
php-version: [ '8.1', '8.2' ]
10+
php-version: [ '8.1', '8.2', '8.3', '8.4' ]
1111
name: curl tests
1212
runs-on: ubuntu-latest
1313
steps:

.github/workflows/code_analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php-version: ['8.1', '8.2']
14+
php-version: ['8.1', '8.2', '8.3', '8.4']
1515
actions:
1616
-
1717
name: Coding Standard

.github/workflows/unit_tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
unittests:
88
strategy:
99
matrix:
10-
php-version: [ '8.1', '8.2' ]
10+
php-version: [ '8.1', '8.2', '8.3', '8.4' ]
1111
fail-fast: false
1212
name: PHPUnit
1313
runs-on: ubuntu-latest

compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ services:
2020
ports:
2121
- 3306
2222
environment:
23-
MYSQL_ROOT_PASSWORD: ${DATABASE_PASSWORD:-bold}
24-
MYSQL_PASSWORD: ${DATABASE_PASSWORD:-bold}
25-
MYSQL_USER: ${DATABASE_USER:-bold}
26-
MYSQL_DATABASE: ${DATABASE_NAME:-bold}
23+
MYSQL_ROOT_PASSWORD: ${DATABASE_PASSWORD:-bolt}
24+
MYSQL_PASSWORD: ${DATABASE_PASSWORD:-bolt}
25+
MYSQL_USER: ${DATABASE_USER:-bolt}
26+
MYSQL_DATABASE: ${DATABASE_NAME:-bolt}
2727
MYSQL_INITDB_SKIP_TZINFO: 0
2828

2929
web:

docker/php/Dockerfile

+1-4
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,7 @@ RUN --mount=type=cache,target=/var/cache/apt \
7272
sed -i s'/pm.max_spare_servers = 3/pm.max_spare_servers = 35/' /usr/local/etc/php-fpm.d/www.conf && \
7373
echo 'ForwardAgent yes' >> /etc/ssh/ssh_config && \
7474
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && \
75-
composer clear-cache && \
76-
mkdir -p /root/.ssh/
77-
78-
COPY know_hosts /root/.ssh/known_hosts
75+
composer clear-cache
7976

8077
EXPOSE 9000
8178
COPY confd/ /etc/confd/

docker/php/know_hosts

-3
This file was deleted.

0 commit comments

Comments
 (0)