From 9e82a2c6c039135885a9c4c82bccc6828be90dd0 Mon Sep 17 00:00:00 2001 From: Derek Su Date: Sun, 9 Feb 2025 14:54:44 +0800 Subject: [PATCH] chore(build): switch to ubuntu 22.04 runner CI failed to build longhorn-share-manager since the action runner image was upgraded to 24.04 20250120.5.0. Longhorn 10372 Signed-off-by: Derek Su (cherry picked from commit 39be0e69a7364631fe45010fff7a898fbd671680) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe9371e3..089f6b8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ on: jobs: build: name: Build binaries - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: build_push_image: name: Build and push image - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: build if: ${{ startsWith(github.ref, 'refs/heads/') || startsWith(github.ref, 'refs/tags/') }} steps: