Skip to content

Commit c0e824a

Browse files
committed
Try updating Docker within Action runner.
1 parent 1a96979 commit c0e824a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/reusable-phpunit-tests-v3.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,14 @@ jobs:
130130
echo "PHP_FPM_UID=$(id -u)" >> "$GITHUB_ENV"
131131
echo "PHP_FPM_GID=$(id -g)" >> "$GITHUB_ENV"
132132
133+
- name: Upgrade Docker
134+
uses: docker/setup-docker-action@v4
135+
with:
136+
daemon-config: |
137+
{
138+
"debug": true,
139+
}
140+
133141
- name: Checkout repository
134142
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
135143
with:

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ services:
7777

7878
volumes:
7979
- ./tools/local-env/mysql-init.sql:/docker-entrypoint-initdb.d/mysql-init.sql
80-
- ./tools/local-env/test/cnf:/etc/my.cnf.d/custom.cnf
8180
- mysql:/var/lib/mysql
8281

8382
# For compatibility with PHP versions that don't support the caching_sha2_password auth plugin used in MySQL 8.0.

tools/local-env/test.cnf

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)