From 43dcb906322c1b9f85d857246080c168339bd194 Mon Sep 17 00:00:00 2001 From: Bonjour LI <33248848+bonjour-py@users.noreply.github.com> Date: Tue, 14 Apr 2026 14:29:52 +0800 Subject: [PATCH] CI Workflow fix: rpm/deb runs-on (#9106) --- .github/workflows/build-linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 5d2d6ac2..a47b3cdc 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -32,7 +32,7 @@ jobs: if: | (github.event_name == 'workflow_dispatch' && inputs.release_tag != '') || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 container: debian:13 env: RELEASE_TAG: ${{ case(inputs.release_tag != '', inputs.release_tag, github.ref_name) }} @@ -84,7 +84,7 @@ jobs: if: | (github.event_name == 'workflow_dispatch' && inputs.release_tag != '') || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 container: registry.access.redhat.com/ubi10/ubi env: RELEASE_TAG: ${{ case(inputs.release_tag != '', inputs.release_tag, github.ref_name) }}