From 277d5edf5caaa69a7608c3bf366dd1a2427303a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 22:07:11 +0300 Subject: [PATCH] chore(deps)!: update image ubuntu to v24 (#294) --- _tools/docker-testing-tools/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_tools/docker-testing-tools/Dockerfile b/_tools/docker-testing-tools/Dockerfile index 45b6fa3..0a60845 100644 --- a/_tools/docker-testing-tools/Dockerfile +++ b/_tools/docker-testing-tools/Dockerfile @@ -10,7 +10,7 @@ ARG ACT_VERSION=0.2.71 ARG SHELLSPEC_VERSION=0.28.1 # Stage 1: Build kcov separately to keep final image slim -FROM ubuntu:22.04 AS kcov-builder +FROM ubuntu:24.04 AS kcov-builder ARG KCOV_VERSION @@ -43,7 +43,7 @@ RUN cmake .. \ && make install DESTDIR=/kcov-install # Stage 2: Base system setup -FROM ubuntu:22.04 AS base +FROM ubuntu:24.04 AS base LABEL maintainer="ivuorinen" LABEL description="GitHub Actions testing framework with pre-installed tools"