From 5fa9ea6713621514d61f7dfa4e5e941b6fca7d32 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 18:28:17 +0000 Subject: [PATCH] Update ubuntu Docker tag to v26 --- testing/docker/docker-compose.test.yml | 2 +- testing/docker/ubuntu.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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