From df7e68a5e2c623bc504d4c4c431eb82c888d694c Mon Sep 17 00:00:00 2001 From: Nitish Tiwari Date: Sat, 3 Jan 2026 15:13:00 +0530 Subject: [PATCH] Change runner version to ubuntu-22.04 in release.yml Updated the runner version for multiple jobs in the release workflow to ubuntu-22.04. Signed-off-by: Nitish Tiwari --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df5443454..e2de56206 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ on: jobs: build-linux: name: Build for ${{matrix.target}} - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # or ubuntu-24.04, ubuntu-20.04 permissions: id-token: write contents: write @@ -172,7 +172,7 @@ jobs: build-kafka-linux: name: Build Kafka for x86_64-unknown-linux-gnu - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # or ubuntu-24.04 ubuntu-20.04 permissions: id-token: write contents: write @@ -322,7 +322,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} create-checksum: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # or ubuntu-24.04, ubuntu-20.04 needs: [build-linux, build-windows, build-mac, build-kafka-linux, build-kafka-mac] steps: - name: Download artifacts created