From a1efd027c3bf79cbe1041d3cb761505db0148e60 Mon Sep 17 00:00:00 2001 From: "dghubble-renovate[bot]" <119624128+dghubble-renovate[bot]@users.noreply.github.com> Date: Thu, 2 Jul 2026 16:22:13 +0000 Subject: [PATCH 1/2] Bump docker.io/ubuntu image from 24.04 to v26 --- Dockerfile.amd64 | 2 +- Dockerfile.arm64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.amd64 b/Dockerfile.amd64 index 4b85464..23527b1 100644 --- a/Dockerfile.amd64 +++ b/Dockerfile.amd64 @@ -3,7 +3,7 @@ COPY . src RUN cd src && make bin -FROM docker.io/ubuntu:24.04@sha256:4fbb8e6a8395de5a7550b33509421a2bafbc0aab6c06ba2cef9ebffbc7092d90 +FROM docker.io/ubuntu:26.04@sha256:b7f48194d4d8b763a478a621cdc81c27be222ba2206ca3ca6bc42b49685f3d9e LABEL maintainer="Dalton Hubble " LABEL org.opencontainers.image.title="github-runner" LABEL org.opencontainers.image.source="https://github.com/poseidon/github-runner" diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index bb971f2..873f00e 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -3,7 +3,7 @@ COPY . src RUN cd src && make bin -FROM docker.io/ubuntu:24.04@sha256:4fbb8e6a8395de5a7550b33509421a2bafbc0aab6c06ba2cef9ebffbc7092d90 +FROM docker.io/ubuntu:26.04@sha256:b7f48194d4d8b763a478a621cdc81c27be222ba2206ca3ca6bc42b49685f3d9e LABEL maintainer="Dalton Hubble " LABEL org.opencontainers.image.title="github-runner" LABEL org.opencontainers.image.source="https://github.com/poseidon/github-runner" From fe9865e87081bf4a4c9f22e9089635bab549585d Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Thu, 2 Jul 2026 09:34:22 -0700 Subject: [PATCH 2/2] Update Ubuntu ICU dependency * Install libicu78 for Ubuntu resolute * Fix image builds after the base image update --- scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build b/scripts/build index 687a70d..64e125f 100755 --- a/scripts/build +++ b/scripts/build @@ -11,7 +11,7 @@ export DEBIAN_FRONTEND=noninteractive # https://github.com/actions/runner/blob/main/docs/start/envlinux.md#full-dependencies-list apt-get update apt-get install --no-install-recommends -y \ - liblttng-ust-dev libkrb5-3 zlib1g libssl-dev libicu74 \ + liblttng-ust-dev libkrb5-3 zlib1g libssl-dev libicu78 \ git curl tar zip make dumb-init ca-certificates apt-get clean