diff --git a/testing/docker/docker-compose.test.yml b/testing/docker/docker-compose.test.yml index 5c2ab02..bd1412f 100644 --- a/testing/docker/docker-compose.test.yml +++ b/testing/docker/docker-compose.test.yml @@ -132,7 +132,7 @@ services: # Test runner that runs all tests in parallel test-all: - image: ubuntu:24.04 + image: ubuntu:26.04 # Long-form depends_on with service_completed_successfully so test-all # waits for the actual tests to complete before running. With short-form, # test-all's `echo` could finish in milliseconds and abort the compose diff --git a/testing/docker/ubuntu.Dockerfile b/testing/docker/ubuntu.Dockerfile index 6d56870..7bcffa0 100644 --- a/testing/docker/ubuntu.Dockerfile +++ b/testing/docker/ubuntu.Dockerfile @@ -1,5 +1,5 @@ # Ubuntu test container for go-syspkg -FROM ubuntu:24.04 +FROM ubuntu:26.04 # Avoid interactive prompts ENV DEBIAN_FRONTEND=noninteractive