From 5290e6becad941ab49890473230f76df2c7daad1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 07:06:06 +0000 Subject: [PATCH 1/3] build(deps): bump ghcr.io/devcontainers/features/common-utils Bumps ghcr.io/devcontainers/features/common-utils from 2.5.6 to 2.5.7. --- updated-dependencies: - dependency-name: ghcr.io/devcontainers/features/common-utils dependency-version: 2.5.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- base-images/src/ubuntu-base/.devcontainer-lock.json | 8 ++++---- base-images/src/ubuntu-base/.devcontainer.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base-images/src/ubuntu-base/.devcontainer-lock.json b/base-images/src/ubuntu-base/.devcontainer-lock.json index 2282a9bf..f508bbfd 100644 --- a/base-images/src/ubuntu-base/.devcontainer-lock.json +++ b/base-images/src/ubuntu-base/.devcontainer-lock.json @@ -1,9 +1,9 @@ { "features": { - "ghcr.io/devcontainers/features/common-utils:2.5.6": { - "version": "2.5.6", - "resolved": "ghcr.io/devcontainers/features/common-utils@sha256:9ddad2e4f71f172cc0bf28461e70948218f70f8ad6cd936b5c8dbe0a8acf6b45", - "integrity": "sha256:9ddad2e4f71f172cc0bf28461e70948218f70f8ad6cd936b5c8dbe0a8acf6b45" + "ghcr.io/devcontainers/features/common-utils:2.5.7": { + "version": "2.5.7", + "resolved": "ghcr.io/devcontainers/features/common-utils@sha256:dbf431d6b42d55cde50fa1df75c7f7c3999a90cde6d73f7a7071174b3c3d0cc4", + "integrity": "sha256:dbf431d6b42d55cde50fa1df75c7f7c3999a90cde6d73f7a7071174b3c3d0cc4" }, "ghcr.io/devcontainers/features/git:1.3.5": { "version": "1.3.5", diff --git a/base-images/src/ubuntu-base/.devcontainer.json b/base-images/src/ubuntu-base/.devcontainer.json index aa128674..a8c093a9 100644 --- a/base-images/src/ubuntu-base/.devcontainer.json +++ b/base-images/src/ubuntu-base/.devcontainer.json @@ -19,7 +19,7 @@ "SHELL": "/bin/bash" }, "features": { - "ghcr.io/devcontainers/features/common-utils:2.5.6": { + "ghcr.io/devcontainers/features/common-utils:2.5.7": { "installZsh": false, "installOhMyZsh": false, "installOhMyZshConfig": false, From eea9743cf06c261c9b3e9616338d0e893c492895 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 7 Mar 2026 04:15:52 +0200 Subject: [PATCH 2/3] chore: bump image version --- base-images/src/ubuntu-base/.devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-images/src/ubuntu-base/.devcontainer.json b/base-images/src/ubuntu-base/.devcontainer.json index a8c093a9..cf94cf6b 100644 --- a/base-images/src/ubuntu-base/.devcontainer.json +++ b/base-images/src/ubuntu-base/.devcontainer.json @@ -6,7 +6,7 @@ "x-build": { "name": "Ubuntu", "image-name": "ubuntu-base", - "image-version": "0.0.42" + "image-version": "0.0.43" }, "remoteUser": "vscode", "containerEnv": { From 28a31a4ebd5daa7a41a92600e54be241503989d3 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 7 Mar 2026 04:33:54 +0200 Subject: [PATCH 3/3] test: introduce a small delay to prevent flakiness --- features/test/php/checks.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/features/test/php/checks.sh b/features/test/php/checks.sh index 15ca0539..f3b802b6 100755 --- a/features/test/php/checks.sh +++ b/features/test/php/checks.sh @@ -10,6 +10,7 @@ else check "php-fpm is running" pgrep php-fpm fi +sleep 1 check "Port 9000 is open" sh -c 'netstat -lnt | grep :9000 ' check "php can run" php --version