From cbad124b7c84e7f3e7859b11d31d56273848dc56 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 19 Sep 2026 06:05:49 +0000 Subject: [PATCH] chore(deps): update dependency ubuntu to v26 --- .github/workflows/CI.yml | 4 ++-- dev/docker/ci/ubuntu.dockerfile | 2 +- dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.dockerfile | 2 +- dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.dockerfile | 2 +- dev/docker/setup-cpp/setup-cpp-ubuntu-mingw.dockerfile | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3da86bf7..c5257297 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -480,7 +480,7 @@ jobs: Docker-Manifest: needs: [Docker] - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 if: ${{ github.event_name != 'pull_request' || contains(github.event.head_commit.message, '[push docker]') }} strategy: fail-fast: false @@ -545,7 +545,7 @@ jobs: Release: if: startsWith(github.ref, 'refs/tags/') needs: [Build, BuildExecutable, Test] - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 steps: - name: Download Executables uses: actions/download-artifact@v8 diff --git a/dev/docker/ci/ubuntu.dockerfile b/dev/docker/ci/ubuntu.dockerfile index c5fbc028..4253c689 100644 --- a/dev/docker/ci/ubuntu.dockerfile +++ b/dev/docker/ci/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG BASE_VERSION=22.04 +ARG BASE_VERSION=26.04 #### Base Image with Node.js FROM --platform=$BUILDPLATFORM ubuntu:${BASE_VERSION} AS ubuntu-nodejs diff --git a/dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.dockerfile b/dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.dockerfile index 52602ee8..643caf82 100644 --- a/dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.dockerfile +++ b/dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.dockerfile @@ -1,5 +1,5 @@ #### Base Image -FROM ubuntu:20.04 AS setup-cpp-ubuntu-mingw +FROM ubuntu:26.04 AS setup-cpp-ubuntu-mingw RUN apt-get update -qq && \ # install latest nodejs on ubuntu 20.04 diff --git a/dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.dockerfile b/dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.dockerfile index 0574c38e..9dd58bff 100644 --- a/dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.dockerfile +++ b/dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.dockerfile @@ -1,5 +1,5 @@ #### Base Image -FROM ubuntu:22.04 AS setup-cpp-ubuntu +FROM ubuntu:26.04 AS setup-cpp-ubuntu # install latest nodejs RUN apt-get update -qq && \ diff --git a/dev/docker/setup-cpp/setup-cpp-ubuntu-mingw.dockerfile b/dev/docker/setup-cpp/setup-cpp-ubuntu-mingw.dockerfile index 2a297941..94638950 100644 --- a/dev/docker/setup-cpp/setup-cpp-ubuntu-mingw.dockerfile +++ b/dev/docker/setup-cpp/setup-cpp-ubuntu-mingw.dockerfile @@ -1,5 +1,5 @@ #### Base Image -FROM ubuntu:22.04 AS setup-cpp-ubuntu-mingw +FROM ubuntu:26.04 AS setup-cpp-ubuntu-mingw # install latest nodejs RUN apt-get update -qq && \